1. e98e8a3 Captured IO streams with embedded backslashes are always such a fun combination... by Nick Coghlan · 14 years ago
  2. 51ee270 issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag from by Gregory P. Smith · 14 years ago
  3. f560485 Get rid of the close_fds DeprecationWarning. Changes the default on a per by Gregory P. Smith · 14 years ago
  4. 3c54ea6 Actually finish the tests for r87182 by Nick Coghlan · 14 years ago
  5. 6b22f3f Issue #10188 (partial resolution): tidy up some behaviour in the new tempfile.TemporaryDirectory context manager by Nick Coghlan · 14 years ago
  6. 8c84b71 having three copies of the same test is surely a bit excessive by Benjamin Peterson · 14 years ago
  7. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  8. 5a27d40 logging: added handler of last resort. by Vinay Sajip · 14 years ago
  9. cf03ac0 #10668: fix wrong call of __init__. by Georg Brandl · 14 years ago
  10. 40e86f0 Fied typo by Vinay Sajip · 14 years ago
  11. 129fd04 test.support: Added TestHandler and Matcher classes for better support of assertions about logging. by Vinay Sajip · 14 years ago
  12. 5280275 Fixed typo in comment. by Hirokazu Yamamoto · 14 years ago
  13. e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 14 years ago
  14. 1b2bd3b Have script_helper._assert_python strip refcount strings from stderr. by R. David Murray · 14 years ago
  15. 53a9dd7 Issue #10546: UTF-16-LE and UTF-16-BE *do* support non-BMP characters by Victor Stinner · 14 years ago
  16. 3fcf002 Update whatsnew. Salt the random number seed. by Raymond Hettinger · 14 years ago
  17. 0eb7f86 return views from dict proxy items/values/keys #10630 by Benjamin Peterson · 14 years ago
  18. 724d089 Temporarily disable newly failing test for the release. by Georg Brandl · 14 years ago
  19. 7bd5dbe More fine-grained monitoring of alterations to logging state by Nick Coghlan · 14 years ago
  20. 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 · 14 years ago
  21. 26253bb Should use posix_error here. by Hirokazu Yamamoto · 14 years ago
  22. 8e9fe9f Avoid possible zombi process. by Hirokazu Yamamoto · 14 years ago
  23. 2668145 Now can reproduce the error on AMD64 Windows Server 2008 by Hirokazu Yamamoto · 14 years ago
  24. 2f0fd0f configparser: mapping protocol access get() handles configparser-specific arguments as well by Łukasz Langa · 14 years ago
  25. 1215915 Use proper plural forms in argparse (#4391) by Éric Araujo · 14 years ago
  26. 13d49ee Issue #10601: sys.displayhook uses 'backslashreplace' error handler on by Victor Stinner · 14 years ago
  27. 44588b4 More issue #10624: Add requires_IEEE_754 to __all__. by Eric Smith · 14 years ago
  28. 34748cd Fix test suite to not activate new sigint behavior in pdb. by Georg Brandl · 14 years ago
  29. 1ed77f3 Issue 10625: Add tests for negative zeros in complex str and repr. by Eric Smith · 14 years ago
  30. 3ab08ca Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. by Eric Smith · 14 years ago
  31. 535c077 support for checking test coverage added. by Łukasz Langa · 14 years ago
  32. f24a0d9 Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other uses of it shortly. by Eric Smith · 14 years ago
  33. 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 · 14 years ago
  34. 2cf9ddb configparser: fixed inconsistency where in SafeConfigParser option values by Łukasz Langa · 14 years ago
  35. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
  36. 732324a #7905: Actually respect the keyencoding parameter to shelve.Shelf. by Georg Brandl · 14 years ago
  37. c29cc6a #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat. by Georg Brandl · 14 years ago
  38. cbd2ab1 #1513299: cleanup some map() uses where a comprehension works better. by Georg Brandl · 14 years ago
  39. 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 · 14 years ago
  40. b416230 refactor the warning test. by Gregory P. Smith · 14 years ago
  41. d9e833c #6045: provide at least get() and setdefault() for all dbm modules. by Georg Brandl · 14 years ago
  42. d23047b issue7213 + issue2320: Cause a DeprecationWarning if the close_fds argument is by Gregory P. Smith · 14 years ago
  43. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  44. c4df784 Issue #10272: The ssl module now raises socket.timeout instead of a generic by Antoine Pitrou · 14 years ago
  45. add7cbf Fix so that test.test_unittest can be executed by unittest and not just regrtest by Michael Foord · 14 years ago
  46. f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by by Antoine Pitrou · 14 years ago
  47. b6a6f5f Issue 10499: Modular interpolation in configparser by Łukasz Langa · 14 years ago
  48. ecace28 Handle Windows paths and don't double up on HTML header sections in new pydoc URL handler by Nick Coghlan · 14 years ago
  49. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 14 years ago
  50. 3ab34cc Factor out common code from lib/test/__main__.py and lib/test/regrtest.py into a function. by Michael Foord · 14 years ago
  51. 6156152 logging: Added getLogRecordFactory/setLogRecordFactory with docs and tests. by Vinay Sajip · 14 years ago
  52. 97cbb76 Fix lib/test/__main__.py to work even outside a Python build. by Michael Foord · 14 years ago
  53. ee4a5e0 Adding lib/test/__main__.py for running tests with 'python -m test' by Michael Foord · 14 years ago
  54. 7bb30b7 Improve Pydoc interactive browsing (#2001). Patch by Ron Adam. by Nick Coghlan · 14 years ago
  55. f8de3fe #10360: catch TypeError in WeakSet.__contains__, just like WeakKeyDictionary does. by Georg Brandl · 14 years ago
  56. d80d5f4 #940286: pydoc.Helper.help() ignores input/output init parameters. by Georg Brandl · 14 years ago
  57. 4c4c0f2 Partially revert r78719 - it removed a check that is still needed in some cases (i.e. this will allow Michael to add the test.__main__ support that broke the buildbots previously) by Nick Coghlan · 14 years ago
  58. 1e5c5f8 #1745035: add limits for command and data size to smtpd; patch by Savio Sena. by Georg Brandl · 14 years ago
  59. b579dba #1486713: Add a tolerant mode to HTMLParser. by R. David Murray · 14 years ago
  60. 79cdb66 Fix #10554. Added context manager support to Popen objects. by Brian Curtin · 14 years ago
  61. 2d93e6e Update the itertools.accumulate() docs. by Raymond Hettinger · 14 years ago
  62. 240f112 Remove test/__main__.py until runpy tests can be fixed by Michael Foord · 14 years ago
  63. d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). by Raymond Hettinger · 14 years ago
  64. a7a0e1a Set test.regrtest.TEMPDIR correctly when run with 'python -m test' by Michael Foord · 14 years ago
  65. e2befc1 Initial implementation of Lib/test/__main__.py so we can run tests with 'python -m test' by Michael Foord · 14 years ago
  66. 5137d64 Fix wrong test code in test_csv (#10602) by Éric Araujo · 14 years ago
  67. 52173d4 Fix #9333. Expose os.symlink on Windows only when usable. by Brian Curtin · 14 years ago
  68. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  69. 5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. by Terry Reedy · 14 years ago
  70. 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 · 14 years ago
  71. d2bb830 #10464: fix netrc handling of lines with embedded '#" characters. by R. David Murray · 14 years ago
  72. f546e70 Issue4335: Added a test for inspect.getsourcelines with a module without EOL at EOF. by Alexander Belopolsky · 14 years ago
  73. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  74. 2f9a77a Reverted unintended change from r86916 by Alexander Belopolsky · 14 years ago
  75. 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 14 years ago
  76. c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 14 years ago
  77. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  78. c0abc4e Fix #10591. Fix test_os for refleak runs. by Brian Curtin · 14 years ago
  79. 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 14 years ago
  80. f498b75 Actually fix what I attempted to fix in r86888... by Brian Curtin · 14 years ago
  81. 9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings by Nick Coghlan · 14 years ago
  82. 43f0c27 Try to fix failures on platforms that can't encode the test characters. by Brian Curtin · 14 years ago
  83. 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 · 14 years ago
  84. 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 · 14 years ago
  85. ff27ee0 Issue #10572: Moved json tests to Lib/test/json_tests. by Alexander Belopolsky · 14 years ago
  86. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  87. 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 14 years ago
  88. ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 14 years ago
  89. 263cbdf Use assertCountEqual instead of assertItemsEqual by Ezio Melotti · 14 years ago
  90. fc889c4 Fix for #8879. by Brian Curtin · 14 years ago
  91. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  92. 1f75f5d Fixed deprecation warnings. by Alexander Belopolsky · 14 years ago
  93. 31717e8 #10453 follow-up: Fix test_quiet on Windows, thanks to Stephan Krah. by Éric Araujo · 14 years ago
  94. 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 · 14 years ago
  95. 99f9637 Issue 2986: Add autojunk paramater to SequenceMatcher to turn off heuristic. Patch by Terry Reedy, Eli Bendersky, and Simon Cross by Terry Reedy · 14 years ago
  96. 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 14 years ago
  97. a9f054b zipfile: remove remaining ResourceWarnings by Łukasz Langa · 14 years ago
  98. 7744e2a Fix test_multiprocessing when ctypes isn't available by Antoine Pitrou · 14 years ago
  99. 0662bc2 Fix tests when ctypes isn't available by Antoine Pitrou · 14 years ago
  100. 5cbc71e Issue #10459: Update CJK character names to Unicode 6.0. by Martin v. Löwis · 14 years ago