1. 96c886c issue6643 - Two locks held within the threading module on each thread instance by Gregory P. Smith · 14 years ago
  2. 68530ac Mention --randseed in option list by Antoine Pitrou · 14 years ago
  3. 3c4402f Issue #6293: Have regrtest.py echo back sys.flags. This is done by default by Antoine Pitrou · 14 years ago
  4. c9c83ba Issue #10806, issue #9905: Fix subprocess pipes when some of the standard by Antoine Pitrou · 14 years ago
  5. 63ebe1c Fix test_site for systems without unsetenv. Reported by Zsolt Cserna. by Éric Araujo · 14 years ago
  6. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  7. faa8c13 test_subprocess: close pipes at the end of test_pipe_cloexec_real_tools() by Victor Stinner · 14 years ago
  8. a3abd1d pydoc: close the DocServer when done by Victor Stinner · 14 years ago
  9. 2b69506 Issue #10816: multiprocessing.SocketClient() closes the socket on error by Victor Stinner · 14 years ago
  10. 1d5eb34 test_socket: use context managers to close directly the socket by Victor Stinner · 14 years ago
  11. a935e8f test_xmlrpc: close the transport when done by Victor Stinner · 14 years ago
  12. 270fe40 test_tkinter: use a context manager to close directly the pipe by Victor Stinner · 14 years ago
  13. 5c85e3f test_timeout: move testRecvfromTimeout() to a UDP-specific test case by Victor Stinner · 14 years ago
  14. 109761b test_sockserver: close servers when done by Victor Stinner · 14 years ago
  15. 1d1df82 Removes the 'Call' class which is used to control execution order and is unreliable on Windows by Brian Quinlan · 14 years ago
  16. ff72816 Supply a reduce method for pickling. by Raymond Hettinger · 14 years ago
  17. 426e052 Make C helper function more closely match the pure python version, and add tests. by Raymond Hettinger · 14 years ago
  18. 23eaa70 Skip hanging test. by Martin v. Löwis · 14 years ago
  19. a251a85 #8278: In the Windows implementation of stat() and utime(), by Amaury Forgeot d'Arc · 14 years ago
  20. 9f6d48b Issue #10798: Reject supporting concurrent.futures if the system has by Martin v. Löwis · 14 years ago
  21. e10608c #8013 follow-up: by Georg Brandl · 14 years ago
  22. 3e913c9 Issue #8013: Fixed test by Alexander Belopolsky · 14 years ago
  23. e2dc082 Issue #8013: Fixed time.asctime segfault when OS's asctime fails by Alexander Belopolsky · 14 years ago
  24. b6f4240 Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from by Victor Stinner · 14 years ago
  25. d8f37ad Relax test condition a lot by Antoine Pitrou · 14 years ago
  26. 00d43fd Fix doctest to not rely on order of dictionary entries. by Raymond Hettinger · 14 years ago
  27. 345c49b Fix OrderedDic.pop() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  28. 32062e9 Make it easier to extend OrderedDict without breaking it. by Raymond Hettinger · 14 years ago
  29. 04480a8 #10801: do not actually extract, just open() the files in the test zipfile. by Georg Brandl · 14 years ago
  30. 5ba11de #10801: In zipfile, support different encodings for the header and the filenames. Patch by MvL, test by Eli Bendersky. by Georg Brandl · 14 years ago
  31. 6739cc0 Issue 6285: catch missing IDLE help file. by Terry Reedy · 14 years ago
  32. a673b1f Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  33. 1daaf9e #9361: add some tests for calendar.leapdays by R. David Murray · 14 years ago
  34. 7b0e86e Issue #10788: Changed test_logging setUp logic to provide more information. by Vinay Sajip · 14 years ago
  35. 076cbae Add the missing __main__.py in the turtledemo package. It seems to have been lost during some mass rename action (r86095). by Georg Brandl · 14 years ago
  36. 6f17e2d Issue 10786: unittest.TextTestRunner default stream no longer bound at import time by Michael Foord · 14 years ago
  37. 4c1da4c Fix a comment typo and update another comment to match Python3 reality by R. David Murray · 14 years ago
  38. 299fa4c Fix Issue 10753 - Don't quote ;=, in the PATH_INFO envvar. by Senthil Kumaran · 14 years ago
  39. 7ef28e8 Close stdout, clear ResourceWarning by Brian Curtin · 14 years ago
  40. 57160d7 Fix #9333 on Windows XP, where os.symlink is not a possibility. by Brian Curtin · 14 years ago
  41. 251cc84 Does not install a logging handler. Fixes issue 10626. by Brian Quinlan · 14 years ago
  42. dad532f Issue 10738: Fix webbrowser.Opera.raise_opts value. by Terry Reedy · 14 years ago
  43. e05ca2a #9824: encode , and ; in cookie values so that browsers don't split on them by R. David Murray · 14 years ago
  44. 31e3b77 This file was obsolted by a number of adjustments to the os.symlink tests by Brian Curtin · 14 years ago
  45. 164540f Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax by Senthil Kumaran · 14 years ago
  46. 3b4499c Fix #9333. The symlink function is always available now, raising OSError by Brian Curtin · 14 years ago
  47. baab9d0 Issue #10783: Fix test_sys, pack('c', ' ') => pack('c', b' ') by Victor Stinner · 14 years ago
  48. da9ec99 Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 by Victor Stinner · 14 years ago
  49. b12fd63 #10767: update README in crashers; not all may have a bug entry and/or be fixed. by Georg Brandl · 14 years ago
  50. 780d5e0 #10768: fix ScrolledText widget construction, and make the example work from the interactive shell. by Georg Brandl · 14 years ago
  51. 90b2067 #10777: fix iteration over dict keys while mutating the dict. by Georg Brandl · 14 years ago
  52. 8e286c4 #7056: runtest and runtest_inner don't use testdir, so drop it from their sigs by R. David Murray · 14 years ago
  53. 7b60f4e Issue #10626: test_logging now preserves logger disabled states. by Vinay Sajip · 14 years ago
  54. 60b4df1 Issue #10774: test_logging now removes temp files created during tests. by Vinay Sajip · 14 years ago
  55. ad4ccfd Skip test that does not raise an error on Windows. by R. David Murray · 14 years ago
  56. ab9d8d6 Escape file path before searching for it in output via regex by R. David Murray · 14 years ago
  57. b4ca59b #5258/#10642: print fn, line, traceback and continue when .pth file is broken by R. David Murray · 14 years ago
  58. 667d4b5 Issue #10763: subprocess.communicate() closes stdout and stderr if both are by Victor Stinner · 14 years ago
  59. 291151b Assign closed handles to None to make errors more obvious if they are used. by Brian Quinlan · 14 years ago
  60. a3015a6 Better reporting of test failures on Windows. by Brian Quinlan · 14 years ago
  61. dfd7eb0 #1693546: don't add quotes around RFC 2231 encoded values. by R. David Murray · 14 years ago
  62. 57bd00a Adopt symmetric names for arguments (actual/expected --> first/second). by Raymond Hettinger · 14 years ago
  63. efbcb1b Keep helper functions private. by Raymond Hettinger · 14 years ago
  64. 9d668da Put diff output in useful order (when the elements were first seen). by Raymond Hettinger · 14 years ago
  65. f954217 Add direct tests for the util functions. by Raymond Hettinger · 14 years ago
  66. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  67. 1e991f2 Fix some mistakes- Issue3243 (r87399) Correcting the operator precendence by Senthil Kumaran · 14 years ago
  68. c44befb Fix docstring. by Raymond Hettinger · 14 years ago
  69. 6518f5e Fix docs and comment for r87454. by Raymond Hettinger · 14 years ago
  70. 8396124 Add test for r87454. by Raymond Hettinger · 14 years ago
  71. bc78e37 update comment by Benjamin Peterson · 14 years ago
  72. 1696f82 Fix syntax typo by Éric Araujo · 14 years ago
  73. d149c6c Issue 10730: mimetypes module - add .svgz to mimetypes.suffix_map and .svg to types_map. by Terry Reedy · 14 years ago
  74. 31e8720 kill some function imports by Benjamin Peterson · 14 years ago
  75. a91dd1e use native tenary condition by Benjamin Peterson · 14 years ago
  76. 5793e6f fix docstring by Benjamin Peterson · 14 years ago
  77. d65a901 Fix buglet. If the input was an iterator, the fallback would occur after by Raymond Hettinger · 14 years ago
  78. 4a62e89 #1155362: allow hh:mm:ss-uuuu like we allow hh:mm:ss+uuuu in parsedate_tz by R. David Murray · 14 years ago
  79. 25b8cca #4496: remove misleading comment and note that self.handlers is obsolete. by R. David Murray · 14 years ago
  80. a63c240 Fix typo in superclass method name by Éric Araujo · 14 years ago
  81. 413d7b4 Nits: use a real boolean, make one docstring more similar to the other ones by Éric Araujo · 14 years ago
  82. d699255 Fix small inaccuracy: there is no index function by Éric Araujo · 14 years ago
  83. 86f65d5 Issue #10254: Fixed a crash and a regression introduced by the implementation of PRI 29. by Alexander Belopolsky · 14 years ago
  84. 70df8f8 Fix ResourceWarning in test_normalization by Antoine Pitrou · 14 years ago
  85. 8d855d8 #4871: check that zipfile password is bytes, and give useful error message. by R. David Murray · 14 years ago
  86. 7f8f418 Issue #10750: The `raw` attribute of buffered IO objects is now read-only. by Antoine Pitrou · 14 years ago
  87. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  88. e0436bc Make test_compileall more robust by using -S to keep sys.path minimized. by R. David Murray · 14 years ago
  89. 73a559d Fix the change made for issue 1243654. by R. David Murray · 14 years ago
  90. 9281202 Revert incorrect patch made at the wrong time. by R. David Murray · 14 years ago
  91. bf90044 Make test_compileall more robust by using -S to keep sys.path minimized. by R. David Murray · 14 years ago
  92. 09a7df8 #3243 follow-up: remove debugging print and fix docs; data is a bytes object. by Georg Brandl · 14 years ago
  93. 7bc0d87 Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji Li and Chris AtLee. by Senthil Kumaran · 14 years ago
  94. 8a60e94 Bump to 3.2b2. by Georg Brandl · 14 years ago
  95. 3de338f Update pydoc topics. by Georg Brandl · 14 years ago
  96. cf8a209 Temporarily skip test failing with newer ttk. by Georg Brandl · 14 years ago
  97. aedd289 #6075: make idle work with both Carbon AquaTk and Cocoa AquaTk. Patch by Kevin Walzer and Ned Deily. by Georg Brandl · 14 years ago
  98. cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. by Michael Foord · 14 years ago
  99. f100dbd Fix minor issue in implementation of issue 10470. by Michael Foord · 14 years ago
  100. b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run by Michael Foord · 14 years ago