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