- b54a809 Fix for glob.py if filesystem encoding is None. by Georg Brandl · 18 years ago
- 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
- ce55e21 Try to get test_urllib to pass on Windows by closing the file. by Neal Norwitz · 18 years ago
- 6cbd8de Try to be a little more resilient to errors. This might help the test by Neal Norwitz · 18 years ago
- b0a7d4e Try to make this test more resistant to dropping from previous runs (ie, files that may exist but cause the test to fail). Should be backported (assuming it works :-) by Neal Norwitz · 18 years ago
- ce2ab35 Try to make this test more resistant to dropping from previous runs (ie, files that may exist but cause the test to fail). Should be backported (assuming it works :-) by Neal Norwitz · 18 years ago
- c990f64 Try backing out 54407 to see if it corrects the problems on the Windows by Neal Norwitz · 18 years ago
- c473d5e Get rid of deprecation warning when testing commands.getstatus() by Neal Norwitz · 18 years ago
- a8785cc Patch #1630118: add a SpooledTemporaryFile class to tempfile. by Collin Winter · 18 years ago
- d9dbe72 Patch #1678339: test case for bug in difflib. by Georg Brandl · 18 years ago
- 2b86994 Patch #1675423: PyComplex_AsCComplex() now tries to convert an object by Georg Brandl · 18 years ago
- 6f18774 Patch 1339796: add a relpath() function to os.path. by Collin Winter · 18 years ago
- 6de691d Remove test/output/test_popen2 (missed in r54417). by Collin Winter · 18 years ago
- 1b4145d Patch #1676994: Refactor test_popen2 to use unittest. by Collin Winter · 18 years ago
- 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 18 years ago
- 8844e43 Patch #1273829: os.walk() now has a "followlinks" parameter. If set to by Georg Brandl · 18 years ago
- 8f06d02 Bug #1681228: the webbrowser module now correctly uses the default by Georg Brandl · 18 years ago
- 77c67bd Patch #1642547: Fix an error/crash when encountering syntax errors in complex if statements. by Collin Winter · 18 years ago
- 20f43d3 Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 18 years ago
- ab1f467 Patch #1681153: the wave module now closes a file object it opened if by Georg Brandl · 18 years ago
- ea2835a Raise ResourceDenied in test_urllib2net when the Net connection goes bad. by Brett Cannon · 18 years ago
- cd1210a Patch #1559413: Fix test_cmd_line if sys.executable contains a space. by Martin v. Löwis · 18 years ago
- 71436f0 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 18 years ago
- f66b603 Bug #767111: fix long-standing bug in urllib which caused an by Georg Brandl · 18 years ago
- dcd24ae SF bug #1582282; decode_header() incorrectly splits not-conformant RFC by Barry Warsaw · 18 years ago
- 4aef727 Patch #1185447: binascii.b2a_qp() now correctly quotes binary characters by Georg Brandl · 18 years ago
- 7e2b6bb Patch #1194449: correctly detect unbound methods in pydoc. by Georg Brandl · 18 years ago
- 03b90d8 Patch #957650: "%var%" environment variable references are now properly by Georg Brandl · 18 years ago
- b6ae6aa Patch #1429539: pdb now correctly initializes the __main__ module for by Georg Brandl · 18 years ago
- 8044e5b Deprecate commands.getstatus(). by Georg Brandl · 18 years ago
- 8e84c65 Patch #1393667: pdb now has a "run" command which restarts the debugged by Georg Brandl · 18 years ago
- 5240d74 Patch #1444529: the builtin compile() now accepts keyword arguments. (backport) by Georg Brandl · 18 years ago
- 5dc4fe0 Patch #1649190: Adding support for _Bool to ctypes as c_bool, by David Remahl. by Thomas Heller · 18 years ago
- 8441f15 Patch #1530482: add pydoc.render_doc() which returns the documentation by Georg Brandl · 18 years ago
- d9bef35 Patch #1533909: the timeit module now accepts callables in addition to by Georg Brandl · 18 years ago
- 4168c04 Fix a tab. by Georg Brandl · 18 years ago
- 35ef9c1 Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter by Georg Brandl · 18 years ago
- 6c104f6 Patch #1605192: list allowed states in error messages for imaplib. by Georg Brandl · 18 years ago
- 9e6b470 Patch #1581073: add a flag to textwrap that prevents the dropping of by Georg Brandl · 18 years ago
- 92a6bae Patch #1603688: ConfigParser.SafeConfigParser now checks values that by Georg Brandl · 18 years ago
- a36cde4 Quick fix for tests that fail on systems with an encoding other by Lars Gustäbel · 18 years ago
- c64e402 This is the implementation of POSIX.1-2001 (pax) format read/write support. by Lars Gustäbel · 18 years ago
- bdd0f39 Patch #1449244: Support Unicode strings in by Martin v. Löwis · 18 years ago
- 18c47f6 Patch #1569798: fix a bug in distutils when building Python from a by Georg Brandl · 18 years ago
- b6a8754 Patch #1542681: add entries for "with", "as" and "CONTEXTMANAGERS" to by Georg Brandl · 18 years ago
- 4ffc8f5 Patch #1555098: use str.join() instead of repeated string by Georg Brandl · 18 years ago
- 94fe3f5 Patch #1635454: the csv.DictWriter class now includes the offending by Georg Brandl · 18 years ago
- ceede5c Patch #1668100: urllib2 now correctly raises URLError instead of by Georg Brandl · 18 years ago
- 09a86bc Fix a typo where the variable name was not updated. by Brett Cannon · 18 years ago
- 41d4e32 Add test.test_support.transient_internet . Returns a context manager that by Brett Cannon · 18 years ago
- ea5962f Whitespace normalization. by Tim Peters · 18 years ago
- cb637c9 Patch #1670993: Refactor test_threadedtempfile.py to use unittest. by Collin Winter · 18 years ago
- 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
- f567ca3 Patch #1678088: convert test_operations to use unittest, fold the result into test_dict. by Collin Winter · 18 years ago
- 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
- 2681beb Patch #1677862: Require a space or tab after import in .pth files. by Martin v. Löwis · 18 years ago
- 9cea8e5 Sane humans would call these invalid tests, but Andrew McNamara pointed out by Skip Montanaro · 18 years ago
- cbbc3f1 Tokio Kikuchi's fix for SF bug #1629369; folding whitespace allowed in the by Barry Warsaw · 18 years ago
- 071d1ae Patch #1678662: ftp.python.org does not exist. So the testcode in urllib.py must use a more by Collin Winter · 18 years ago
- a5e7648 Fix resource leak reported in SF #1516995. by Vinay Sajip · 18 years ago
- 2faa9e1 Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the IndexError caused by passing in an invalid breakpoint number. by Collin Winter · 18 years ago
- b278318 Add missing "return" statements in exception handler. by Georg Brandl · 18 years ago
- ae04106 Patch #1599845: Add an option to disable the implicit calls to server_bind() and server_activate() in the constructors for TCPServer, SimpleXMLRPCServer and DocXMLRPCServer. by Collin Winter · 18 years ago
- 3351aa7 Convert an assert to a raise so it works even in the presence of -O. by Collin Winter · 18 years ago
- c8f6c23 Simplify a little by handling the TCP case first. by Neal Norwitz · 18 years ago
- 22c42ba Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to calling getsockname() on the server's socket. by Collin Winter · 18 years ago
- dbead56 * Unlink test files before and after each test; hopefully this will cut down on recent buildbot failures in test_islink. by Collin Winter · 18 years ago
- 9453e5d Hashing simplification pointed out by Thomas Wouters. by Collin Winter · 18 years ago
- 2456a3c Bug #1651235: When a tuple was passed to a ctypes function call, by Thomas Heller · 18 years ago
- e38051d Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError. by Collin Winter · 18 years ago
- c2f7725 Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) by Thomas Heller · 18 years ago
- 1190a38 Patch #957003: Implement smtplib.LMTP. by Martin v. Löwis · 18 years ago
- 83b2bf6 Patch #1481079: Support of HTTP_REFERER in CGIHTTPServer.py by Collin Winter · 18 years ago
- a30fcb4 Introduce test.test_support.TransientResource. It's a context manager to by Brett Cannon · 18 years ago
- 9b2a109 Patch #1668482: don't use '-' in mkstemp by Collin Winter · 18 years ago
- 0e520b4 SF #1637850: make_table in difflib did not work with unicode by Raymond Hettinger · 18 years ago
- 5545314 Backported r54226 from p3yk: Move test_unittest, test_doctest and test_doctest2 higher up in the testing order. by Collin Winter · 18 years ago
- 8b188e6 SF 1676321: empty() returned wrong result by Raymond Hettinger · 18 years ago
- f1200f8 Windows doesn't support negative timestamps. Skip the tests involving them by Guido van Rossum · 18 years ago
- d9e5026 Add some sanity checks to unittest.TestSuite's addTest(s) methods. by Georg Brandl · 18 years ago
- 9decc0d Patch #1675471: convert test_pty to unittest. by Georg Brandl · 18 years ago
- 05c075d Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). by Martin v. Löwis · 18 years ago
- d0a9625 Patch #787789: allow to pass custom TestRunner instances to unittest's by Georg Brandl · 18 years ago
- 15c5ce9 Patches #1550273, #1550272: fix a few bugs in unittest and add a by Georg Brandl · 18 years ago
- 71ff646 Patch #1001604: glob.glob() now returns unicode filenames if it was by Georg Brandl · 18 years ago
- 172e725 Patch #812285: allow multiple auth schemes in AbstractBasicAuthHandler. by Georg Brandl · 18 years ago
- d391f08 Patch for bug #1633621: if curses.resizeterm() or by Walter Dörwald · 18 years ago
- 40c6261 Patch #1654417: make operator.{get,set,del}slice use the full range by Georg Brandl · 18 years ago
- 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
- cff1ae3 Small nit, found by Neal. by Georg Brandl · 18 years ago
- 2054ee9 Patch #1646728: datetime.fromtimestamp fails with negative by Guido van Rossum · 18 years ago
- ab8a6bb Patch #912410: Replace HTML entity references for attribute values by Martin v. Löwis · 18 years ago
- ff432e6 Patch #1663234: you can now run doctest on test files and modules by Georg Brandl · 18 years ago
- 7236303 A test case for the defaultdict KeyError bug. by Georg Brandl · 18 years ago
- d53d951 Patch #1672481: fix bug in idlelib.MultiCall. by Georg Brandl · 18 years ago
- 3071a1a A test case for the fix in #1674228. by Georg Brandl · 18 years ago
- 3eb7648 Patch #1121142: Implement ZipFile.open. by Martin v. Löwis · 18 years ago
- 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
- ca90ca8 Minor corrections to docs, and an explanation comentary by Facundo Batista · 18 years ago
- 8905bb1 Fix a bug in test_dict and test_userdict, found at the PyPy sprint. by Georg Brandl · 18 years ago