1. a425c3d Make lzma.{encode,decode}_filter_properties private. by Nadeem Vawda · 12 years ago
  2. 6916835 #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  3. 9ed8b4e #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  4. fd8a838 Issue #14684: Add support for predefined compression dictionaries to the zlib module. by Nadeem Vawda · 12 years ago
  5. 42c9b04 Prefer assertEqual to simply assert per recommendation in issue6727. by Jason R. Coombs · 12 years ago
  6. 0b3847d Issue #15096: Drop support for the ur string prefix by Christian Heimes · 12 years ago
  7. 10c8791 Fix GzipFile's handling of filenames given as bytes objects. by Nadeem Vawda · 12 years ago
  8. 103e811 Fix GzipFile's handling of filenames given as bytes objects. by Nadeem Vawda · 12 years ago
  9. 0d0a1de Fix #14772: Return the destination from some shutil functions. by Brian Curtin · 12 years ago
  10. ac38571 Issue #15064: Make BaseManager.__enter__() start server if necessary. by Richard Oudkerk · 12 years ago
  11. d69cfe8 Issue #15064: Implement context manager protocol for multiprocessing types by Richard Oudkerk · 12 years ago
  12. 0f88427 Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  13. f29ec4b Issue #15101: Make pool finalizer avoid joining current thread. by Richard Oudkerk · 12 years ago
  14. 1375884 Fiddle with timeouts in barrier tests by Richard Oudkerk · 12 years ago
  15. d5a1a21 Prevent test_inspect from keeping alive a ton of frames and local variables by way of a global variable keeping a reference to a traceback. by Antoine Pitrou · 12 years ago
  16. 48114b9 Issue #14657: The frozen instance of importlib used for bootstrap is now also the module imported as importlib._bootstrap. by Antoine Pitrou · 12 years ago
  17. 7636b19 Merge: Update out of date docstring. by R David Murray · 12 years ago
  18. 3ac8c78 Update out of date docstring. by R David Murray · 12 years ago
  19. 307ef8a Merge from 3.2 (Ignore X-Antivirus headers in test_nntplib) by Nick Coghlan · 12 years ago
  20. 14d99a1 Ignore X-Antivirus headers in test_nntplib by Nick Coghlan · 12 years ago
  21. e51e25a Merge from 3.2 (Issue #15095: Use better assertions in test_imaplib) by Nick Coghlan · 12 years ago
  22. e6ef462 Issue #15095: Use better assertions in test_imaplib by Nick Coghlan · 12 years ago
  23. 9aff2a7 Merge from 3.2 (Issue #15043: skip test_gdb if the custom hooks can't be loaded) by Nick Coghlan · 12 years ago
  24. 658dc3f Disable test on Unix. Causes buildbots to fail. See Issue #15091 by Jason R. Coombs · 12 years ago
  25. be4e4b5 Issue #15043: skip test_gdb if the custom hooks can't be loaded by Nick Coghlan · 12 years ago
  26. 1730139 White space normalization. by Martin v. Löwis · 12 years ago
  27. bce1666 Issue #14055: Add __sizeof__ support to _elementtree. by Martin v. Löwis · 12 years ago
  28. 71fde31 Adding test from issue6727 demonstrating that symlink import issue does not occur here in 3.3 by Jason R. Coombs · 12 years ago
  29. d972265 Improve an internal ipaddress test, add a comment explaining why treating networks as containers of interfaces rather than addresses would prove confusing by Nick Coghlan · 12 years ago
  30. 8d5c0b8 Issue #15054: Fix incorrect tokenization of 'b' string literals. by Meador Inge · 12 years ago
  31. 7e19337 Normalize whitespace by Antoine Pitrou · 12 years ago
  32. aaefac7 Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels. by Antoine Pitrou · 12 years ago
  33. 6319e0f Make the test more resilient to test-run order (closes #15075) by Eli Bendersky · 12 years ago
  34. 184252a Fix "%f" format of str%args if the result is not an ASCII or latin1 string by Victor Stinner · 12 years ago
  35. 0831382 Issue #15006: Allow equality comparison between naive and aware time by Alexander Belopolsky · 12 years ago
  36. ea0b823 Issue #14938: importlib.abc.SourceLoader.is_package() now takes the by Brett Cannon · 12 years ago
  37. 0450c9e Issue #13959: Add to imp.find_module() and load_module's docstrings by Brett Cannon · 12 years ago
  38. 24aa693 Merge by Brett Cannon · 12 years ago
  39. 016ef55 Removed redundant code by Alexander Belopolsky · 12 years ago
  40. 9125775 Fix _TestListener.ALLOWED_TYPES and add sanity check by Richard Oudkerk · 12 years ago
  41. 3049f12 Increase timeout used when waiting for manager to shutdown cleanly by Richard Oudkerk · 12 years ago
  42. 0f52346 Fix for 2d2f206d040e so that test_multiprocessing does not depend on ctypes by Richard Oudkerk · 12 years ago
  43. a717d56 #15036: Make a repeated changes and flushes work with single-file mailboxes by Petri Lehtinen · 12 years ago
  44. 02653f1 #15036: Make a repeated changes and flushes work with single-file mailboxes by Petri Lehtinen · 12 years ago
  45. 3730a17 Issue #14059: Implement multiprocessing.Barrier by Richard Oudkerk · 12 years ago
  46. 807770e Issue #15061: Don't oversell the capabilities of the new non-shortcircuiting comparison function in hmac by Nick Coghlan · 12 years ago
  47. 307693a Skip XincludeTest entirely instead of just ignoring failures, because it may segfault, depending on the order of running tests by Eli Bendersky · 12 years ago
  48. 27cbb19 Removed _SimpleElementPath and its flaky test. The test monkey-patches the module, which causes other failures and fails itself depending on the order tests are run. by Eli Bendersky · 12 years ago
  49. 175fada mark problematic test as expected failure - investigating by Eli Bendersky · 12 years ago
  50. 64d11e6 Replace the iter/itertext methods of Element in _elementtree with true C implementations, instead of the bootstrapped Python code. In addition to being cleaner (removing the last remains of the bootstrapping code in _elementtree), this gives a 10x performance boost for iter() on large documents. by Eli Bendersky · 12 years ago
  51. 73d9a29 Issue #13841: Make child processes exit using sys.exit() on Windows by Richard Oudkerk · 12 years ago
  52. 474eb23 merge 3.2 by Martin v. Löwis · 12 years ago
  53. 993fe3f Issue #14937: Fix typo. Patch by Roger Serwy. by Martin v. Löwis · 12 years ago
  54. c142bba Issue #1667546: On platforms supporting tm_zone and tm_gmtoff fields by Alexander Belopolsky · 12 years ago
  55. 6222d76 Fix test_time for adjusted/adjustable changes by Victor Stinner · 12 years ago
  56. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  57. f0604fd Issue #3518: Remove references to non-existent BaseManager.from_address() method by Richard Oudkerk · 12 years ago
  58. 7b383c4 Make a test easier to read. by Brett Cannon · 12 years ago
  59. 4fae8cd Close #13857: Added textwrap.indent() function (initial patch by Ezra Berch) by Nick Coghlan · 12 years ago
  60. a26ad5a #15015: Fix accessing an non-existing attribute. by Brian Quinlan · 12 years ago
  61. f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 12 years ago
  62. 1c2018c Small cleanup and optimization by Raymond Hettinger · 12 years ago
  63. 80ed4d4 Minor reformatting (wrap fat lines, etc.) and create an __main__ file by Raymond Hettinger · 12 years ago
  64. 7596364 Fix exception when calling reset_mock on a mock created with autospec by Michael Foord · 12 years ago
  65. 6e50b69 Now that Defects are Exception subclasses, call super. by R David Murray · 12 years ago
  66. f6f5618 Relax datetime.timestamp() test around DST change by Alexander Belopolsky · 12 years ago
  67. 0c687e5 Relax datetime.timestamp() test around DST change by Alexander Belopolsky · 12 years ago
  68. a441514 Issue #2736: Added datetime.timestamp() method. by Alexander Belopolsky · 12 years ago
  69. ed36b2e #14814: Remove redundant code from ipaddress.IPv6Network by Hynek Schlawack · 12 years ago
  70. 571ee57 Merge from 3.2, #12510 by Terry Jan Reedy · 12 years ago
  71. 2a2ce4f Issue #12510: Revise and triple # of calltip tests, with an eye to unittest by Terry Jan Reedy · 12 years ago
  72. 58ba47f Merge fixes for #13854 and #12157. by Richard Oudkerk · 12 years ago
  73. 7448220 Issue #11823: disassembly now shows argument counts on calls with keyword args by Alexander Belopolsky · 12 years ago
  74. 29471de Issue #13854: Properly handle non-integer, non-string arg to SystemExit by Richard Oudkerk · 12 years ago
  75. e41682b Issue #12157: pool.map() does not handle empty iterable correctly by Richard Oudkerk · 12 years ago
  76. 9844993 Add test for multiprocessing.Conditon.wait() and changset 3baeb5e13dd2 by Richard Oudkerk · 12 years ago
  77. f86a5e8 Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore by Victor Stinner · 12 years ago
  78. 91c5a34 #14814: ipaddress: refactor dup code, minor janitoring, bump coverage by Hynek Schlawack · 12 years ago
  79. 034d0aa Issue #14711: os.stat_float_times() has been deprecated. by Victor Stinner · 12 years ago
  80. e860404 Add a function lzma.open(), to match gzip.open() and bz2.open(). by Nadeem Vawda · 12 years ago
  81. 6cbb20c Allow LZMAFile to accept modes with a "b" suffix. by Nadeem Vawda · 12 years ago
  82. 33c34da Simplify usage of LZMAFile's fileobj support, like with BZ2File. by Nadeem Vawda · 12 years ago
  83. af518c1 Add a function bz2.open(), to match gzip.open(). by Nadeem Vawda · 12 years ago
  84. 50cb936 Clarify acceptable values for BZ2File.__init__'s mode argument. by Nadeem Vawda · 12 years ago
  85. aebcdba Make BZ2File's fileobj support easier to use. by Nadeem Vawda · 12 years ago
  86. 6872101 Add fileobj support to gzip.open(). by Nadeem Vawda · 12 years ago
  87. 05cab75 #8739: fix omission of DEBUGSTREAM reset in new test in test_smtpd. by R David Murray · 12 years ago
  88. bd7b5dd Prevent handle leak if CreateProcess() fails in multiprocessing by Richard Oudkerk · 12 years ago
  89. 86eb7e9 Fix potential NameError in multiprocessing.Condition.wait() by Richard Oudkerk · 12 years ago
  90. ad06444 Make Finalize reserve a reference to os.getpid in case called at shutdown by Richard Oudkerk · 12 years ago
  91. 454a74d #14814: Remove dead code from ipaddress by Hynek Schlawack · 12 years ago
  92. efce00c Whitespace normalization by Barry Warsaw · 12 years ago
  93. 028b37c PEP 421 requires that .name be lower case. by Barry Warsaw · 12 years ago
  94. c58c392 Trunk merge. by Barry Warsaw · 12 years ago
  95. bcd3044 #14814: Use correct comparison for IP addresses by Hynek Schlawack · 12 years ago
  96. 0c9050c Separate key creation logic from the sequence class that memoizes its hash value. by Raymond Hettinger · 12 years ago
  97. 2d7d56a Revert the modification of e.strerror in 3.2 as that kind of change could by Gregory P. Smith · 12 years ago
  98. f0a9a9b Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  99. a81c856 Fixes Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError by Gregory P. Smith · 12 years ago
  100. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago