1. 1eadd6a Issue #19592: Use specific asserts in lib2to3 tests. by Serhiy Storchaka · 11 years ago
  2. 8bdc130 Issue #19592: Use specific asserts in lib2to3 tests. by Serhiy Storchaka · 11 years ago
  3. e048add Issue #19589: Use specific asserts in asyncio tests. by Serhiy Storchaka · 11 years ago
  4. f38f7f3 asyncio: Avoid ResourceWarning. Fix issue 19580 by Vajrasky Kok. by Guido van Rossum · 11 years ago
  5. 8ff3e8a asyncio: Relax timing requirement. Fixes issue 19579. by Guido van Rossum · 11 years ago
  6. 2bcae70 asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix). by Guido van Rossum · 11 years ago
  7. be3c2fe removed Enum.__eq__ as it added nothing by Ethan Furman · 11 years ago
  8. 82e9f32 asyncio: Temporary fix by Victor Stinner for issue 19566. by Guido van Rossum · 11 years ago
  9. 8b097b4 Close #17828: better handling of codec errors by Nick Coghlan · 11 years ago
  10. d3e83e2 Avoid global side effect in test_ensurepip by Nick Coghlan · 11 years ago
  11. ca351e6 Fix test_socket for repr update by Nick Coghlan · 11 years ago
  12. c46600d merge by Giampaolo Rodola' · 11 years ago
  13. 1bfa7ed test.support: considering the module is a mix of utilities unrelated with each other divide __all__ in sub-sections so that it can be used as a quick-reference doc by Giampaolo Rodola' · 11 years ago
  14. 45956b9 Close #19466: Clear the frames of daemon threads earlier during the Python by Victor Stinner · 11 years ago
  15. c6a140f Merge from 3.3 by Andrew Kuchling · 11 years ago
  16. 98a0d06 Closes #12828: add docstring text noting this is an internal-only module by Andrew Kuchling · 11 years ago
  17. d9182e6 Remove mis-merged artefact by Tim Golden · 11 years ago
  18. bbe268f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  19. 6e51b8f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  20. dfcd694 Issue #19440: Clean up test_capi by Zachary Ware · 11 years ago
  21. c12f09e Issue #19440: Clean up test_capi by Zachary Ware · 11 years ago
  22. 7859182 Closes #6683: add a test that exercises multiple authentication. by Andrew Kuchling · 11 years ago
  23. fc0cad8b Remove outdated comment by Tim Golden · 11 years ago
  24. acea823 Remove outdated comment by Tim Golden · 11 years ago
  25. d0cf063 Close #19406: Initial implementation of ensurepip by Nick Coghlan · 11 years ago
  26. 020af2a Issue #8799: Reduce timing sensitivity of condition test by explicitly by Kristjan Valur Jonsson · 11 years ago
  27. 77796e4 Fix failing test incorrectly merged in b1244046f37a by Jason R. Coombs · 11 years ago
  28. 0048ae0 Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was unable to test due to bab0cbf86835. by Jason R. Coombs · 11 years ago
  29. a2ebfd0 Issue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2. by Jason R. Coombs · 11 years ago
  30. 375dc9b Merge with 3.3 for Issue #19544 and Issue #7457 by Jason R. Coombs · 11 years ago
  31. 3492e39 Issue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2. by Jason R. Coombs · 11 years ago
  32. 711e91b Issue #16685: Added support for any bytes-like objects in the audioop module. by Serhiy Storchaka · 11 years ago
  33. 74af9d3 Merge heads by Serhiy Storchaka · 11 years ago
  34. 81895f8 Issue #19261: Added support for writing 24-bit samples in the sunau module. by Serhiy Storchaka · 11 years ago
  35. 72cd8b9 Merge by Jason R. Coombs · 11 years ago
  36. 6bdc498 Normalize whitespace by Jason R. Coombs · 11 years ago
  37. ad8156e #1097797: Add CP273 codec, and exercise it in the test suite by Andrew Kuchling · 11 years ago
  38. 29828a6 Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms. by Serhiy Storchaka · 11 years ago
  39. a44372f Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms. by Serhiy Storchaka · 11 years ago
  40. 35ac05e Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085). by Serhiy Storchaka · 11 years ago
  41. affb9b2 Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085). by Serhiy Storchaka · 11 years ago
  42. 9e5aba2 remove dead import by Brett Cannon · 11 years ago
  43. 9ea8eda Issue #16803: test.test_importlib.source now tests frozen and source code by Brett Cannon · 11 years ago
  44. 3a4586a Issue #18923: Update subprocess to use the new selectors module. by Charles-François Natali · 11 years ago
  45. 2ce6c44 Simplify test.test_importlib.__main__ by Brett Cannon · 11 years ago
  46. 330f71b Issue #16803: test.test_importlib.import_ now tests frozen and source code by Brett Cannon · 11 years ago
  47. a3c6963 Issue #16803: test.test_importlib.frozen now runs both frozen and source code by Brett Cannon · 11 years ago
  48. d029359 Remove redundant test_selectors.py from test_asyncio. by Guido van Rossum · 11 years ago
  49. a5b9599 #17080: improve error message of float/complex when the wrong type is passed. by Ezio Melotti · 11 years ago
  50. d0786a1 Optimize BaseSelector.modify(). Patch by Arnaud Faure. by Guido van Rossum · 11 years ago
  51. b703881 #19480: merge with 3.3. by Ezio Melotti · 11 years ago
  52. 7165d8b #19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard. by Ezio Melotti · 11 years ago
  53. 0b69fbc asyncio: Add close() back to Unix selector event loop, to remove all signal handlers. Should fix buildbot issues. by Guido van Rossum · 11 years ago
  54. 95887b7 Remove incorrect comment from dis tests by Nick Coghlan · 11 years ago
  55. 90b8e7d Close #19378: address flaws in the new dis module APIs by Nick Coghlan · 11 years ago
  56. 24f1258 Revert wrong change in previous commit (issue #19085). by Serhiy Storchaka · 11 years ago
  57. 7c934da Revert wrong change in previous commit (issue #19085). by Serhiy Storchaka · 11 years ago
  58. 96c0168 Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue #19085). by Serhiy Storchaka · 11 years ago
  59. 8f9f587 Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue #19085). by Serhiy Storchaka · 11 years ago
  60. 17972a7 Fix typo in tkinter tests (issue #19085). by Serhiy Storchaka · 11 years ago
  61. 98555f3 Fix typo in tkinter tests (issue #19085). by Serhiy Storchaka · 11 years ago
  62. 6079814 Issue #10197 Tweak docs for subprocess.getstatusoutput and align the documentation, the module docstring, and the function docstring. by Tim Golden · 11 years ago
  63. c1bd2fe Merge with 3.3 by Terry Jan Reedy · 11 years ago
  64. 5c81164 Issue #19397: test_pydoc now works with -S (help not added to builtins). by Terry Jan Reedy · 11 years ago
  65. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 11 years ago
  66. ccea084 asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\ by Guido van Rossum · 11 years ago
  67. b58d4a3 Issue #19085: Fix running test_ttk_textonly on displayless host. by Serhiy Storchaka · 11 years ago
  68. 2028e01 Issue #19085: Fix running test_ttk_textonly on displayless host. by Serhiy Storchaka · 11 years ago
  69. 20acaa7 Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12. by Serhiy Storchaka · 11 years ago
  70. 8d8599c Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12. by Serhiy Storchaka · 11 years ago
  71. 3daaf5f Fix functools.partialmethod docs and __all__ by Nick Coghlan · 11 years ago
  72. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  73. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  74. af73496 Merge #19485: clarify get_param example. by R David Murray · 11 years ago
  75. 0de4d3e #19485: clarify get_param example. by R David Murray · 11 years ago
  76. 9fe43f5 Issue #19085: Fixed pixels rounding for last Tk patchlevels. by Serhiy Storchaka · 11 years ago
  77. b281732 Issue #19085: Fixed pixels rounding for last Tk patchlevels. by Serhiy Storchaka · 11 years ago
  78. eb6392b Issue #10197: merge heads by Tim Golden · 11 years ago
  79. 49667f0 Issue #10197: merge heads by Tim Golden · 11 years ago
  80. ab7211f Issue #10197 Rework subprocess.get[status]output to use subprocess functionality and thus to work on Windows. Patch by Nick Coghlan. by Tim Golden · 11 years ago
  81. e004175 Issue #10197 Rework subprocess.get[status]output to use subprocess functionality and thus to work on Windows. Patch by Nick Coghlan. by Tim Golden · 11 years ago
  82. 4babb91 Issue #6157: Fixed tkinter.Text.debug(). tkinter.Text.bbox() now raises by Serhiy Storchaka · 11 years ago
  83. 0b9e815 Issue #6157: Fixed tkinter.Text.debug(). Original patch by Guilherme Polo. by Serhiy Storchaka · 11 years ago
  84. 0de5362 Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of by Serhiy Storchaka · 11 years ago
  85. 2849e0d Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of by Serhiy Storchaka · 11 years ago
  86. 8e113b4 Close #19403: make contextlib.redirect_stdout reentrant by Nick Coghlan · 11 years ago
  87. 4e641df Close #19439: execute embedding tests on Windows by Nick Coghlan · 11 years ago
  88. f4cb48a Issue #4331: Added functools.partialmethod by Nick Coghlan · 11 years ago
  89. df0b14d Merge. by Richard Oudkerk · 11 years ago
  90. e943697 Issue #19478: Make choice of semaphore prefix more flexible. by Richard Oudkerk · 11 years ago
  91. e71fb28 Merge with 3.3 for Issue #19286. by Jason R. Coombs · 11 years ago
  92. ca9242f Merge with 3.2 for Issue #19286. by Jason R. Coombs · 11 years ago
  93. 0aade62 Merge heads by Serhiy Storchaka · 11 years ago
  94. 9788497 Issue #19085: Fixed some Tkinter tests on Windows. by Serhiy Storchaka · 11 years ago
  95. af630c5 Merge. by Richard Oudkerk · 11 years ago
  96. b8ec1e3 Relax timeout test. by Richard Oudkerk · 11 years ago
  97. 2902b6d Relax test for process return code on Windows. by Richard Oudkerk · 11 years ago
  98. 1943c8a Merge test_htmlparser changes from 3.3. by Ezio Melotti · 11 years ago
  99. 5028f4d Use unittest.main() in test_htmlparser. by Ezio Melotti · 11 years ago
  100. 88ebfb1 #15114: The html.parser module now raises a DeprecationWarning when the strict argument of HTMLParser or the HTMLParser.error method are used. by Ezio Melotti · 11 years ago