1. da9ec99 Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 by Victor Stinner · 15 years ago
  2. b12fd63 #10767: update README in crashers; not all may have a bug entry and/or be fixed. by Georg Brandl · 15 years ago
  3. 90b2067 #10777: fix iteration over dict keys while mutating the dict. by Georg Brandl · 15 years ago
  4. 8e286c4 #7056: runtest and runtest_inner don't use testdir, so drop it from their sigs by R. David Murray · 15 years ago
  5. 7b60f4e Issue #10626: test_logging now preserves logger disabled states. by Vinay Sajip · 15 years ago
  6. 60b4df1 Issue #10774: test_logging now removes temp files created during tests. by Vinay Sajip · 15 years ago
  7. ad4ccfd Skip test that does not raise an error on Windows. by R. David Murray · 15 years ago
  8. ab9d8d6 Escape file path before searching for it in output via regex by R. David Murray · 15 years ago
  9. b4ca59b #5258/#10642: print fn, line, traceback and continue when .pth file is broken by R. David Murray · 15 years ago
  10. 667d4b5 Issue #10763: subprocess.communicate() closes stdout and stderr if both are by Victor Stinner · 15 years ago
  11. 291151b Assign closed handles to None to make errors more obvious if they are used. by Brian Quinlan · 15 years ago
  12. a3015a6 Better reporting of test failures on Windows. by Brian Quinlan · 15 years ago
  13. 1e991f2 Fix some mistakes- Issue3243 (r87399) Correcting the operator precendence by Senthil Kumaran · 15 years ago
  14. a63c240 Fix typo in superclass method name by Éric Araujo · 15 years ago
  15. 86f65d5 Issue #10254: Fixed a crash and a regression introduced by the implementation of PRI 29. by Alexander Belopolsky · 15 years ago
  16. 70df8f8 Fix ResourceWarning in test_normalization by Antoine Pitrou · 15 years ago
  17. 8d855d8 #4871: check that zipfile password is bytes, and give useful error message. by R. David Murray · 15 years ago
  18. 7f8f418 Issue #10750: The `raw` attribute of buffered IO objects is now read-only. by Antoine Pitrou · 15 years ago
  19. e0436bc Make test_compileall more robust by using -S to keep sys.path minimized. by R. David Murray · 15 years ago
  20. 9281202 Revert incorrect patch made at the wrong time. by R. David Murray · 15 years ago
  21. bf90044 Make test_compileall more robust by using -S to keep sys.path minimized. by R. David Murray · 15 years ago
  22. 7bc0d87 Issue3243 - Support iterable bodies in httplib. Patch contributions by Xuanji Li and Chris AtLee. by Senthil Kumaran · 15 years ago
  23. 5466bf1 Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by Antoine Pitrou by Senthil Kumaran · 15 years ago
  24. ac53ab6 #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Urban. by Ezio Melotti · 15 years ago
  25. fd311a7 Add subparser aliases for argparse. Resolves issue 9324. Approved by Georg for beta2 on the tracker. by Steven Bethard · 15 years ago
  26. 71b37a5 100% test coverage, better mapping protocol compatibility, some minor bugfixes by Łukasz Langa · 15 years ago
  27. 988dbd7 Issue #10711: Remove HTTP 0.9 support from http.client. The `strict` by Antoine Pitrou · 15 years ago
  28. dca5b86 Fix Issue9721 - urljoin behavior when the relative url starts with ';' by Senthil Kumaran · 15 years ago
  29. b25a791 configparser API cleanup: default values now sensible, slightly incompatible. by Łukasz Langa · 15 years ago
  30. 5317e9c #10719: restore messages generated on invalid compileall args by R. David Murray · 15 years ago
  31. c492437 Issue #10714: Limit length of incoming request in http.server to 65536 bytes by Antoine Pitrou · 15 years ago
  32. 7f64c8a Broken ConfigParser removed, SafeConfigParser renamed to ConfigParser. by Łukasz Langa · 15 years ago
  33. 4fef555 Make test_threadsignals more lax, and add notes by Antoine Pitrou · 15 years ago
  34. 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 15 years ago
  35. 17a5925 Issue 10534, difflib: tweak doc; test new SequenceMatcher instance attributes; avoid unneeded lists of SM.b2j keys and items in .__chain_b. Do not backport. by Terry Reedy · 15 years ago
  36. bd8f145 TIMEOUT value change in URLTimeout Test. test.support.transient_internet has a by Senthil Kumaran · 15 years ago
  37. ce4b170 #4236: avoid possible Fatal Error when import is called from __del__ by R. David Murray · 15 years ago
  38. 95333e3 More comprehensive compileall cli tests, and fixes. by R. David Murray · 15 years ago
  39. 31d04f2 SIGCHLD is a more portable name than SIGCLD. (OSX has no SIGCLD) by Gregory P. Smith · 15 years ago
  40. ec07331 #775964: skip YP/NIS entries instead of failing the test by R. David Murray · 15 years ago
  41. a80f4fb Fix "BytesWarning: str() on a bytes instance" by Gregory P. Smith · 15 years ago
  42. e85db2b Issue #1731717: Fixed the problem where subprocess.wait() could cause an by Gregory P. Smith · 15 years ago
  43. 32ef70c #10695: use %s not %d so that a string 'port' does not cause a debug traceback by R. David Murray · 15 years ago
  44. 8edd99d Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest. by Gregory P. Smith · 15 years ago
  45. 6ecf76e Use skipIf instead of a return when attribute doesn't exist. by R. David Murray · 15 years ago
  46. 771d33e Issue 10687. When --without-pymalloc is given, $VERSION is the same as by Barry Warsaw · 15 years ago
  47. e98e8a3 Captured IO streams with embedded backslashes are always such a fun combination... by Nick Coghlan · 15 years ago
  48. 51ee270 issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag from by Gregory P. Smith · 15 years ago
  49. f560485 Get rid of the close_fds DeprecationWarning. Changes the default on a per by Gregory P. Smith · 15 years ago
  50. 3c54ea6 Actually finish the tests for r87182 by Nick Coghlan · 15 years ago
  51. 6b22f3f Issue #10188 (partial resolution): tidy up some behaviour in the new tempfile.TemporaryDirectory context manager by Nick Coghlan · 15 years ago
  52. 8c84b71 having three copies of the same test is surely a bit excessive by Benjamin Peterson · 15 years ago
  53. 28a4dce remove (un)transform methods by Benjamin Peterson · 15 years ago
  54. 5a27d40 logging: added handler of last resort. by Vinay Sajip · 15 years ago
  55. cf03ac0 #10668: fix wrong call of __init__. by Georg Brandl · 15 years ago
  56. 40e86f0 Fied typo by Vinay Sajip · 15 years ago
  57. 129fd04 test.support: Added TestHandler and Matcher classes for better support of assertions about logging. by Vinay Sajip · 15 years ago
  58. 5280275 Fixed typo in comment. by Hirokazu Yamamoto · 15 years ago
  59. e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 15 years ago
  60. 1b2bd3b Have script_helper._assert_python strip refcount strings from stderr. by R. David Murray · 15 years ago
  61. 53a9dd7 Issue #10546: UTF-16-LE and UTF-16-BE *do* support non-BMP characters by Victor Stinner · 15 years ago
  62. 3fcf002 Update whatsnew. Salt the random number seed. by Raymond Hettinger · 15 years ago
  63. 0eb7f86 return views from dict proxy items/values/keys #10630 by Benjamin Peterson · 15 years ago
  64. 724d089 Temporarily disable newly failing test for the release. by Georg Brandl · 15 years ago
  65. 7bd5dbe More fine-grained monitoring of alterations to logging state by Nick Coghlan · 15 years ago
  66. 7d81975 Issue 10626 investigation: regrtest now checks for alterations to the logging state in the current process (and yes, test_pydoc alters it) by Nick Coghlan · 15 years ago
  67. 26253bb Should use posix_error here. by Hirokazu Yamamoto · 15 years ago
  68. 8e9fe9f Avoid possible zombi process. by Hirokazu Yamamoto · 15 years ago
  69. 2668145 Now can reproduce the error on AMD64 Windows Server 2008 by Hirokazu Yamamoto · 15 years ago
  70. 2f0fd0f configparser: mapping protocol access get() handles configparser-specific arguments as well by Łukasz Langa · 15 years ago
  71. 1215915 Use proper plural forms in argparse (#4391) by Éric Araujo · 15 years ago
  72. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 15 years ago
  73. 44588b4 More issue #10624: Add requires_IEEE_754 to __all__. by Eric Smith · 15 years ago
  74. 34748cd Fix test suite to not activate new sigint behavior in pdb. by Georg Brandl · 15 years ago
  75. 1ed77f3 Issue 10625: Add tests for negative zeros in complex str and repr. by Eric Smith · 15 years ago
  76. 3ab08ca Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. by Eric Smith · 15 years ago
  77. 535c077 support for checking test coverage added. by Łukasz Langa · 15 years ago
  78. f24a0d9 Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other uses of it shortly. by Eric Smith · 15 years ago
  79. 70099a1 Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex. by Eric Smith · 15 years ago
  80. 2cf9ddb configparser: fixed inconsistency where in SafeConfigParser option values by Łukasz Langa · 15 years ago
  81. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 15 years ago
  82. 732324a #7905: Actually respect the keyencoding parameter to shelve.Shelf. by Georg Brandl · 15 years ago
  83. c29cc6a #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat. by Georg Brandl · 15 years ago
  84. cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 15 years ago
  85. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 15 years ago
  86. b416230 refactor the warning test. by Gregory P. Smith · 15 years ago
  87. d9e833c #6045: provide at least get() and setdefault() for all dbm modules. by Georg Brandl · 15 years ago
  88. d23047b issue7213 + issue2320: Cause a DeprecationWarning if the close_fds argument is by Gregory P. Smith · 15 years ago
  89. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 15 years ago
  90. c4df784 Issue #10272: The ssl module now raises socket.timeout instead of a generic by Antoine Pitrou · 15 years ago
  91. add7cbf Fix so that test.test_unittest can be executed by unittest and not just regrtest by Michael Foord · 15 years ago
  92. f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by by Antoine Pitrou · 15 years ago
  93. b6a6f5f Issue 10499: Modular interpolation in configparser by Łukasz Langa · 15 years ago
  94. ecace28 Handle Windows paths and don't double up on HTML header sections in new pydoc URL handler by Nick Coghlan · 15 years ago
  95. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 15 years ago
  96. 3ab34cc Factor out common code from lib/test/__main__.py and lib/test/regrtest.py into a function. by Michael Foord · 15 years ago
  97. 6156152 logging: Added getLogRecordFactory/setLogRecordFactory with docs and tests. by Vinay Sajip · 15 years ago
  98. 97cbb76 Fix lib/test/__main__.py to work even outside a Python build. by Michael Foord · 15 years ago
  99. ee4a5e0 Adding lib/test/__main__.py for running tests with 'python -m test' by Michael Foord · 15 years ago
  100. 7bb30b7 Improve Pydoc interactive browsing (#2001). Patch by Ron Adam. by Nick Coghlan · 15 years ago