- 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 18 years ago
- 9db1d5a Add a missing check before deleting a package's __loader__. by Brett Cannon · 18 years ago
- 43e53f8 doctest assumed that a package's __loader__.get_data() method used universal by Brett Cannon · 18 years ago
- 0e5edf5 Remove a unneeded line that had typos. by Brett Cannon · 18 years ago
- 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 18 years ago
- 547867e Another fix for test_shutil. Martin pointed out that it breaks some build bots by Christian Heimes · 18 years ago
- 044d709 Fixed bug #1470 by Christian Heimes · 18 years ago
- 4673e19 Fix the OSX failures in this test -- they were due to /tmp being a symlink by Guido van Rossum · 18 years ago
- 089816b Make this work stand-alone, too. by Guido van Rossum · 18 years ago
- 8f6793b Enable some test_cmd_line_script debugging output to investigate failure on Mac OSX buildbot by Nick Coghlan · 18 years ago
- 183744d Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode()) by Walter Dörwald · 18 years ago
- fc7e72d Fix typo in comment. by Walter Dörwald · 18 years ago
- 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 18 years ago
- 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 18 years ago
- 414c2b0 add the certificate for the Python SVN repository for testing SSL by Bill Janssen · 18 years ago
- eeeb9c4 Accept Issac Morland's suggestion for __replace__ to allow multiple replacements by Raymond Hettinger · 18 years ago
- b5e5d07 Add test for __fields__ being read-only by Raymond Hettinger · 18 years ago
- 0d75f09 Merge from py3k branch: by Amaury Forgeot d'Arc · 18 years ago
- 0288cb0 Add the test from issue 1704621 (the issue itself is already fixed here). by Guido van Rossum · 18 years ago
- d1ef789 Issue 1416. Add getter, setter, deleter methods to properties that can be by Guido van Rossum · 18 years ago
- 980c4fc Correct a comment about testing methods - nowadays most by Georg Brandl · 18 years ago
- 1760c8a Add set.isdisjoint() by Raymond Hettinger · 18 years ago
- cdcf887 Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset counts for example. by Raymond Hettinger · 18 years ago
- 12e9420 Fix marshal's incorrect handling of subclasses of builtin types (backport candidate). by Raymond Hettinger · 18 years ago
- e1ac4f1 Fixes Issue 1385: The hmac module now computes the correct hmac when using by Gregory P. Smith · 18 years ago
- b13f70d Add a missing quotation mark. by Brett Cannon · 18 years ago
- 3814a91 Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport candidate) by Nick Coghlan · 18 years ago
- 4de2263 Removed non ASCII text from test as requested by Guido. Sorry :/ by Christian Heimes · 18 years ago
- e18f21c Backport of import tests for bug http://bugs.python.org/issue1293 and bug http://bugs.python.org/issue1342 by Christian Heimes · 18 years ago
- ea68474 Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) by Hye-Shik Chang · 18 years ago
- 01a0957 Shorter name for namedtuple() by Raymond Hettinger · 18 years ago
- 8feafab Add phuang patch from Issue 708374 which adds offset parameter to mmap module. by Travis E. Oliphant · 18 years ago
- fa61797 Remove duplicate crasher. by Georg Brandl · 18 years ago
- 1486182 Add a crasher for the long-standing issue with closing a file by Armin Rigo · 18 years ago
- 9b5e231 The constructor from tuple was way too permissive: it allowed bad by Facundo Batista · 18 years ago
- 7066590 Issue #1580738. When HTTPConnection reads the whole stream with read(), by Facundo Batista · 18 years ago
- a1e42e1 Fix the overflow checking of list_repeat. by Armin Rigo · 18 years ago
- abfd8df More docs, error messages, and tests by Raymond Hettinger · 18 years ago
- ec56019 test_bigbits was not testing what it seemed to. by Armin Rigo · 18 years ago
- 880605a Let the O/S supply a port if none of the default ports can be used. by Neal Norwitz · 18 years ago
- 3a0de08 Fix test of count.__repr__() to ignore the 'L' if the count is a long by Raymond Hettinger · 18 years ago
- 6899586 Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded deques. by Raymond Hettinger · 18 years ago
- a48a299 Eliminate camelcase function name by Raymond Hettinger · 18 years ago
- 2115bbc Add comments to NamedTuple code. by Raymond Hettinger · 18 years ago
- 92abad2 Ensure that this test will pass even if another test left an unwritable TESTFN. by Neal Norwitz · 18 years ago
- 71e4fb5 Use the host the author likely meant in the first place. pop.gmail.com is by Gregory P. Smith · 18 years ago
- a7fc4b1 Add __asdict__() to NamedTuple and refine the docs. by Raymond Hettinger · 18 years ago
- 50e90e2 itertools.count() no longer limited to sys.maxint. by Raymond Hettinger · 18 years ago
- 1a191df Made the various is_* operations return booleans. This was discussed by Facundo Batista · 18 years ago
- ad8fb0d Patch # 188 by Philip Jenvey. by Guido van Rossum · 18 years ago
- 8c20244 Issue #1772851. Optimization of __hash__ to behave better for big big numbers. by Facundo Batista · 18 years ago
- b3e6e8c Fix obvious typo in threaded test. by Thomas Wouters · 18 years ago
- d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 18 years ago
- 2b03d45 Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people can see how it works. by Raymond Hettinger · 18 years ago
- 6c398da The methods always return Decimal classes, even if they're by Facundo Batista · 18 years ago
- d36a60e Sync-up named tuples with the latest version of the ASPN recipe. by Raymond Hettinger · 18 years ago
- bf10c47 use binary mode when reading files for testAsyncore to make Windows happy by Bill Janssen · 18 years ago
- 296a59d Add support for asyncore server-side SSL support. This requires by Bill Janssen · 18 years ago
- 353750c Merged the decimal-branch (revisions 54886 to 58140). Decimal is now by Facundo Batista · 18 years ago
- 8fd3ecf Bug #1153: repr.repr() now doesn't require set and dictionary items by Georg Brandl · 18 years ago
- c28d5fb root certificate for https://svn.python.org/, used in test_ssl by Bill Janssen · 18 years ago
- 4c20bc4 Generators had their throw() method allowing string exceptions. That's a no-no. by Brett Cannon · 18 years ago
- 1df42b1 Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056) by Nick Coghlan · 18 years ago
- e3f1d7d Make sure test_ssl doesn't reference the ssl module in a by Bill Janssen · 18 years ago
- 119c7a6 A better way of finding an open port to test with. by Bill Janssen · 18 years ago
- b559113 Patch # 1026 by Benjamin Aranguren (with Alex Martelli): by Guido van Rossum · 18 years ago
- 1ff91d9 Patch # 1140 (my code, approved by Effbot). by Guido van Rossum · 18 years ago
- 98d19da More work on SSL support. by Bill Janssen · 18 years ago
- a0c0551 Fix a possible segfault from recursing too deep to get the repr of a list. by Brett Cannon · 18 years ago
- 0a04819 tr a-z A-Z does not work on Solaris (would require by Martin v. Löwis · 18 years ago
- e9fef69 Change socket.error to inherit from IOError rather than being a stand by Gregory P. Smith · 18 years ago
- f805785 email address update by Gregory P. Smith · 18 years ago
- 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 18 years ago
- 68a6da9 Make uuid1 and uuid4 tests conditional on whether ctypes can be imported; by Brett Cannon · 18 years ago
- 337841d PyDict_GetItem() returns a borrowed reference. by Armin Rigo · 18 years ago
- 362bb51 PyDict_GetItem() returns a borrowed reference. by Armin Rigo · 18 years ago
- ffe576d SSL certificate distinguished names should be represented by tuples by Bill Janssen · 18 years ago
- a513619 Patch #1031213: Decode source line in SyntaxErrors back to its original by Martin v. Löwis · 18 years ago
- 628e3bb One more fix to consider missing SSL support. by Thomas Wouters · 18 years ago
- 7dcb83c Bug #1709599: Run test_1565150 only if the file system is NTFS. by Martin v. Löwis · 18 years ago
- 0226d85 * Skip test_pipes on non-POSIX. by Georg Brandl · 18 years ago
- 27d9ee3 Patch #1680959: add test suite for pipes module. by Georg Brandl · 18 years ago
- 426ea0a This contains a number of things: by Bill Janssen · 18 years ago
- 492e592 Ignore test failures caused by 'resource temporarily unavailable' by Facundo Batista · 18 years ago
- 6d20b70 Fix test output. by Walter Dörwald · 18 years ago
- 1a41313 fixes 813986 by Skip Montanaro · 18 years ago
- bf13833 Add a crasher for the thread-unsafety of file objects. by Georg Brandl · 18 years ago
- 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
- 0f4a14b TarFile.__init__() no longer fails if no name argument is passed and by Lars Gustäbel · 18 years ago
- ba8c565 > Regardless, building a fixed test certificate and checking it in sounds like by Guido van Rossum · 18 years ago
- f91ad6a Ignore test failures caused by 'resource temporarily unavailable' by Facundo Batista · 18 years ago
- 9eb9b10 If we can't create a certificate, print a warning, but don't fail the test. by Neal Norwitz · 18 years ago
- 3e533c2 Make a utility function for handling (printing) an error by Neal Norwitz · 18 years ago
- f6f525b Stop using string.join (from the module) to ease upgrade to py3k by Neal Norwitz · 18 years ago
- d6a51e6 Another patch from Bill Janssen that: by Neal Norwitz · 18 years ago
- 1b2f62d Catch IOError for when the device file doesn't exist or the user doesn't have by Neal Norwitz · 18 years ago
- 15d4e56 Get the test passing by commenting out some writes (should they be removed?) by Neal Norwitz · 18 years ago
- e472933 Bill Janssen wrote: by Guido van Rossum · 18 years ago
- 7fc8e29 Fail gracefully if the cert files cannot be created by Neal Norwitz · 18 years ago
- 482043a Reap children before the test starts so hopefully SocketServer by Neal Norwitz · 18 years ago