1. 5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. by Terry Reedy · 15 years ago
  2. b2ddf79 Issue #9573: os.fork now works when triggered as a side effect of import (the wisdom of actually relying on this remains questionable!) by Nick Coghlan · 15 years ago
  3. d2bb830 #10464: fix netrc handling of lines with embedded '#" characters. by R. David Murray · 15 years ago
  4. f546e70 Issue4335: Added a test for inspect.getsourcelines with a module without EOL at EOF. by Alexander Belopolsky · 15 years ago
  5. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 15 years ago
  6. 2f9a77a Reverted unintended change from r86916 by Alexander Belopolsky · 15 years ago
  7. 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 15 years ago
  8. c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 15 years ago
  9. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 15 years ago
  10. f10c400 Fix test failure in debug builds and add NEWS entry for r86908 by Ezio Melotti · 15 years ago
  11. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 15 years ago
  12. 00f2f97 Doc and docstring nits. by Raymond Hettinger · 15 years ago
  13. c0abc4e Fix #10591. Fix test_os for refleak runs. by Brian Curtin · 15 years ago
  14. 697ce95 Add link to specification. by Raymond Hettinger · 15 years ago
  15. 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 15 years ago
  16. f498b75 Actually fix what I attempted to fix in r86888... by Brian Curtin · 15 years ago
  17. 9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings by Nick Coghlan · 15 years ago
  18. 43f0c27 Try to fix failures on platforms that can't encode the test characters. by Brian Curtin · 15 years ago
  19. 5e20bab Neaten-up a bit. by Raymond Hettinger · 15 years ago
  20. 7921b9f Issue 10220: switch to using string constants rather than integers for inspect.getgeneratorstate() return values and make debugging friendly str() and repr() for generator states a requirement in the test suite by Nick Coghlan · 15 years ago
  21. 234515a Issue 10586: change the new functools.lru_cache implementation to expose the maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. by Nick Coghlan · 15 years ago
  22. ff27ee0 Issue #10572: Moved json tests to Lib/test/json_tests. by Alexander Belopolsky · 15 years ago
  23. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 15 years ago
  24. ac9a2bb Use booleans where applicable. by Georg Brandl · 15 years ago
  25. 2660747 Code style cleanup in bdb. by Georg Brandl · 15 years ago
  26. 3d0f388 Remove the comment used while testing. by Senthil Kumaran · 15 years ago
  27. 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 15 years ago
  28. ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 15 years ago
  29. 263cbdf Use assertCountEqual instead of assertItemsEqual by Ezio Melotti · 15 years ago
  30. 40b8cf5 Do not add an obsolete unittest name to Py3.2. by Raymond Hettinger · 15 years ago
  31. fc889c4 Fix for #8879. by Brian Curtin · 15 years ago
  32. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 15 years ago
  33. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 15 years ago
  34. db213a2 Replace _nbits() with int.bit_length(). by Raymond Hettinger · 15 years ago
  35. 1f75f5d Fixed deprecation warnings. by Alexander Belopolsky · 15 years ago
  36. 9aed6cc Modernize code in effective(). by Georg Brandl · 15 years ago
  37. 31717e8 #10453 follow-up: Fix test_quiet on Windows, thanks to Stephan Krah. by Éric Araujo · 15 years ago
  38. 984bb58 Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. by Eric Smith · 15 years ago
  39. 5fa40c0 Clean-up docstring, comments, and whitespace. by Raymond Hettinger · 15 years ago
  40. 99f9637 Issue 2986: Add autojunk paramater to SequenceMatcher to turn off heuristic. Patch by Terry Reedy, Eli Bendersky, and Simon Cross by Terry Reedy · 15 years ago
  41. bd86301 sys.abiflags is not defined on all platforms. by Barry Warsaw · 15 years ago
  42. d5eaa5f sys.abiflags may not be defined on all platforms. by Barry Warsaw · 15 years ago
  43. 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 15 years ago
  44. 14d98ac Final patch for issue 9807. by Barry Warsaw · 15 years ago
  45. fdba067 Remove unnecessary import. by Barry Warsaw · 15 years ago
  46. 5e43857 Issue 9222 Fix filetypes for open dialog by Terry Reedy · 15 years ago
  47. a9f054b zipfile: remove remaining ResourceWarnings by Łukasz Langa · 15 years ago
  48. e94980a Issue #9846: ZipExtFile provides no mechanism for closing the underlying file object by Łukasz Langa · 15 years ago
  49. 022f049 Issue #6878: Fixed return type of tkinter methods documented to return lists. by Alexander Belopolsky · 15 years ago
  50. 7744e2a Fix test_multiprocessing when ctypes isn't available by Antoine Pitrou · 15 years ago
  51. 0662bc2 Fix tests when ctypes isn't available by Antoine Pitrou · 15 years ago
  52. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 15 years ago
  53. b87ef8f Improve test for 'python -m unittest' launching test discovery by Michael Foord · 15 years ago
  54. 5cbc71e Issue #10459: Update CJK character names to Unicode 6.0. by Martin v. Löwis · 15 years ago
  55. c295862 Fix Issue4493 - urllib2 adds '/' to the path component of url, when it does not by Senthil Kumaran · 15 years ago
  56. 5cb823d Fix one compileall test (#10453). Patch by Michele Orrù. by Éric Araujo · 15 years ago
  57. 300623d r84925 followup: add docstring for get_makefile_filename (+PEP 257 fixes) by Éric Araujo · 15 years ago
  58. 2a0be78 Quote the paths in the event that they contain spaces. by Brian Curtin · 15 years ago
  59. f991642 Fix #6378. Start IDLE using the proper version of Python based on the directory by Brian Curtin · 15 years ago
  60. 086f308 Issue 10470: 'python -m unittest' launches test discovery by default.(If you need to pass options to test discovery the discover subcommand must still be specified explicitly.) by Michael Foord · 15 years ago
  61. 3bce11c Make test_nntplib more robust by Antoine Pitrou · 15 years ago
  62. 719a449 Fix TestBytesGeneratorIdempotent tests and a couple bugs they revealed. by R. David Murray · 15 years ago
  63. e4dad4f Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write only on end_headers call. by Senthil Kumaran · 15 years ago
  64. a73dc9d configparser: read-only attributes to get the section name and parser from a SectionProxy instance by Łukasz Langa · 15 years ago
  65. 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 15 years ago
  66. d325c4b Revert r86517 by Raymond Hettinger · 15 years ago
  67. e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 15 years ago
  68. a491ced Try to get more useful output from failing buildbot by Éric Araujo · 15 years ago
  69. d57bb55 fix two broken tests by Benjamin Peterson · 15 years ago
  70. 8d16ab3 merge all range tests into test_range by Benjamin Peterson · 15 years ago
  71. 94ab7a0 enable test that was commented out for whatever reason by Benjamin Peterson · 15 years ago
  72. 0b458d5 count() should return integers #10474 by Benjamin Peterson · 15 years ago
  73. 2e579f0 Fix typos and style in compileall. by Éric Araujo · 15 years ago
  74. 650f147 #10453: compileall now uses argparse instead of getopt, so -h works. by R. David Murray · 15 years ago
  75. 74abf6f #9724: add nonlocal to pydoc topics. by Georg Brandl · 15 years ago
  76. ff1144e Fix two NameErrors in distutils (#10407) by Éric Araujo · 15 years ago
  77. b1cb105 revert changes in inappropiate branch by Benjamin Peterson · 15 years ago
  78. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 15 years ago
  79. b8bc439 don't shadow globals by Benjamin Peterson · 15 years ago
  80. 44454af Issue #10371: Deprecated undocumented functions in the trace module. by Alexander Belopolsky · 15 years ago
  81. 5f78040 add filename to ENOENT message #4925 by Benjamin Peterson · 15 years ago
  82. fa73555 correct logic when pos is after the string #10467 by Benjamin Peterson · 15 years ago
  83. 6bcfade Improve unittest.TestLoader.discover docstring by Michael Foord · 15 years ago
  84. 5c41787 add space by Benjamin Peterson · 15 years ago
  85. 5e703cf Fix issue10377 - Output from pstats - it is just secs (i.e, wallclock time) and not CPU time. by Senthil Kumaran · 15 years ago
  86. 35184ed Issue 9732: __class__ no longer checked on objects by getattr_static by Michael Foord · 15 years ago
  87. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 15 years ago
  88. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 15 years ago
  89. cc7ebb8 Issue 9732: remove use of __class__ in inspect.getattr_static and note the mro exception to code execution by Michael Foord · 15 years ago
  90. c264c09 configparser: the name of the DEFAULT section is now customizable by Łukasz Langa · 15 years ago
  91. b357fb7 Issue 10326: further extend test for unpickling to ensure type lookup mechanism works after unpickling by Michael Foord · 15 years ago
  92. 8a00eec Issue 10326: extend test for pickling of TestCase instances to ensure they can be unpickled too by Michael Foord · 15 years ago
  93. 8ca6d98 Issue 10326: TestCase instances can now be pickled (they store names of instance methods instead of references to the instance methods themselves). by Michael Foord · 15 years ago
  94. e5db263 Improve TestBytesGeneratorIdempotent using by using linesep. by R. David Murray · 15 years ago
  95. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 15 years ago
  96. 89197fe socket.gethostbyname(socket.gethostname()) can fail when host name resolution is not set up correctly; do not fail test_socket if this is the case. by Georg Brandl · 15 years ago
  97. 9f1c1dc #10465: fix broken delegation in __getattr__ of _PaddedFile. by Georg Brandl · 15 years ago
  98. 4ccc137 Issue #9920: Skip tests for cmath.atan and cmath.atanh applied to by Mark Dickinson · 15 years ago
  99. b304d0b Fixes a timing-related failure on Windows (issue 10183) by Brian Quinlan · 15 years ago
  100. 722b5fd Make test class name unique so that both test classes run. by R. David Murray · 15 years ago