1. 8c16cb9 Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. by Georg Brandl · 8 years ago
  2. eae3336 Issue #26402: Fix XML-RPC client retrying after server disconnection by Martin Panter · 8 years ago
  3. f828218 Issue #25801: Fixed resource warnings in test_zipfile64. Patch by SilentGhost. by Serhiy Storchaka · 8 years ago
  4. 020250f Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. by Ned Deily · 8 years ago
  5. 102d813 Issue #26302: Correctly identify comma as an invalid character for a cookie (correcting regression in Python 3.5). by Anish Shah · 8 years ago
  6. e14c07e Fixed a bug in os.walk() with bytes path on Windows caused by merging fixes by Serhiy Storchaka · 8 years ago
  7. 205e75b Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True. by Serhiy Storchaka · 8 years ago
  8. 1827eff Issue #5824: Fix DatagramRequestHandler tests by binding the client socket by Martin Panter · 8 years ago
  9. ee3074e Issue #22088: Clarify base-64 alphabets and which characters are discarded by Martin Panter · 8 years ago
  10. 1f0e1f3 Issue #26261: Clarify NamedTemporaryFile name attribute vs file.name by Martin Panter · 8 years ago
  11. 558823a Issue #26186: Remove an invalid type check in importlib.util.LazyLoader. by Brett Cannon · 8 years ago
  12. 4f38cb4 Issue #26367: Have importlib.__init__() raise RuntimeError when by Brett Cannon · 8 years ago
  13. f817a48 Issues #22468, #21996, #22208: Clarify gettarinfo() and TarInfo usage by Martin Panter · 8 years ago
  14. 4bf4274 Issue #26309: Rewrite test in main thread and avoid race condition by Martin Panter · 8 years ago
  15. 3fe64d0 Issue #16915: Clarify that mode parameter of socket.makefile() does not accept by Berker Peksag · 8 years ago
  16. c12fef9 Issue #26309: Shut down socketserver request if verify_request() is false by Martin Panter · 8 years ago
  17. 77c9681 Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once. by Yury Selivanov · 8 years ago
  18. b2a2aa7 Fixes #26348: Corrected typos in activate.fish script. by Vinay Sajip · 8 years ago
  19. 06c45e6 Issue #25995: os.walk() no longer uses FDs proportional to the tree depth. by Serhiy Storchaka · 8 years ago
  20. 94a619d Issue #26325: Added test.support.check_no_resource_warning() to check that by Serhiy Storchaka · 8 years ago
  21. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 8 years ago
  22. 96a4f07 Issues #26310, #26311: Fix typos in the documentation and code comments by Martin Panter · 8 years ago
  23. 763f9f0 Issue #25983: Added tests for multi-argument type(). by Serhiy Storchaka · 8 years ago
  24. 5f6a0b4 Issue #25911: Restored support of bytes paths in os.walk() on Windows. by Serhiy Storchaka · 8 years ago
  25. 4439148 Issue #26045: Add UTF-8 suggestion to error in http.client by Martin Panter · 8 years ago
  26. 0c0d537 Issue #26198: Make datetime error tests more lenient. by Serhiy Storchaka · 8 years ago
  27. c4b813d Issue #26198: Fixed error messages for some argument parsing errors. by Serhiy Storchaka · 8 years ago
  28. a037022 Issue #12923: Reset FancyURLopener's redirect counter even on exception by Martin Panter · 8 years ago
  29. 46f7785 Issue #25660: Fix a unittest and rlcompleter when readline isn't available by Yury Selivanov · 8 years ago
  30. a7eae40 Issue #25660: Fix TAB key behaviour in REPL. by Yury Selivanov · 8 years ago
  31. 3874128 Issue #25945: Fixed bugs in functools.partial. by Serhiy Storchaka · 8 years ago
  32. b00da57 Issue #26194: Inserting into a full deque to raise an IndexError by Raymond Hettinger · 8 years ago
  33. 3e72309 Fix error message in asyncio.selector_events. by Victor Stinner · 8 years ago
  34. 0df5313 test_asyncio: fix test_timeout_time() by Victor Stinner · 8 years ago
  35. 275bd96 Issue #19587: Remove masked and redundant tests in test_bytes by Martin Panter · 8 years ago
  36. 3464ea2 Issue #26173: Separate bad cert file tests and client rejection test by Martin Panter · 8 years ago
  37. 4a208e4 Issue #23076: Path.glob() now raises a ValueError if it's called with an by Berker Peksag · 8 years ago
  38. b594422 Issue #4806: Avoid masking original TypeError in call with * unpacking by Martin Panter · 8 years ago
  39. 407b62f Issue #26173: Fix test_ssl confusion with non-existing cert and wrongcert.pem by Martin Panter · 8 years ago
  40. 0a20bbf Issue #26202: copy.deepcopy() now correctly copies range() objects with by Serhiy Storchaka · 8 years ago
  41. b49a1ed Merge heads by Serhiy Storchaka · 8 years ago
  42. c8241fd Issue #26198: Added tests for "es", "et", "es#", "et#" and "C" format units by Serhiy Storchaka · 8 years ago
  43. 8f475ef Backport fixes on test_eintr by Victor Stinner · 8 years ago
  44. ad13edb Issue #24705: Add a test case for ef84d21f5292 by Berker Peksag · 8 years ago
  45. 34360c8 Issue #19023: Document ctypes array and pointer classes by Martin Panter · 8 years ago
  46. 22532ac Issue #26034: Improve wording of clear parameter by Berker Peksag · 8 years ago
  47. 547f66f Issue #26034: Sync documentation of --clear with its behavior by Berker Peksag · 8 years ago
  48. b31a284 Issue #25507: revert incorrect movement of idleConf import in c548ad75160c. by Terry Jan Reedy · 8 years ago
  49. 3743432 Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen by Raymond Hettinger · 8 years ago
  50. d4e51f4 Remove unnecessary test case comment in urllib.parse.py. These are asserted as test cases. by Senthil Kumaran · 8 years ago
  51. 3cdd5fb code_richcompare() now uses the constants types by Victor Stinner · 9 years ago
  52. 38150e0 Merge update to pip by Donald Stufft · 9 years ago
  53. 5d01246 Upgrade pip to 8.0.2 by Donald Stufft · 9 years ago
  54. aebb6d3 Issue #26147: xmlrpc now works with strings not encodable with used by Serhiy Storchaka · 9 years ago
  55. 1dce2c7 Merge update to pip/setuptools by Donald Stufft · 9 years ago
  56. 33a8276 Update pip to 8.0.0 and setuptools to 19.4 by Donald Stufft · 9 years ago
  57. d205d01 Issue #25935: Garbage collector now breaks reference loops with OrderedDict. by Serhiy Storchaka · 9 years ago
  58. e914cd1 Issue #16620: Fixed AttributeError in msilib.Directory.glob(). by Serhiy Storchaka · 9 years ago
  59. 47b91b0 Fix BytecodeTestCase.assertNotInBytecode() by Victor Stinner · 9 years ago
  60. 9ad1154 set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731) by Benjamin Peterson · 9 years ago
  61. 8f19e8e Issue #25859: Reimplement NNTP test_starttls() using local server by Martin Panter · 9 years ago
  62. 1b25eff Issue #25366: Skip test_with_pip when threading module is not available by Berker Peksag · 9 years ago
  63. 5c1d9d2 Added exceptins for testing non-reversible import mapping for Issue #26013. by Serhiy Storchaka · 9 years ago
  64. 111c7b9 Issue #26013: Added compatibility with broken protocol 2 pickles created by Serhiy Storchaka · 9 years ago
  65. 084f7e4 Issue #9006: Added tests for XML RPC with non-UTF-8 encoding. by Serhiy Storchaka · 9 years ago
  66. 3567651 Issue #25905: Specify 'ascii' encoding for README.txt and NEWS.txt. by Terry Jan Reedy · 9 years ago
  67. 332334f Issue #26071: bdist_wininst created binaries fail to start and find 32bit Python by Steve Dower · 9 years ago
  68. 1d32941 Issue #25850: Use cross-compilation by default for 64-bit Windows. by Steve Dower · 9 years ago
  69. 7a5fe6d Issue #14771: Redirect GDB's stdin to avoid messing the terminal settings by Martin Panter · 9 years ago
  70. a3a5833 Make the error message regex more lenient so that it matches both by Gregory P. Smith · 9 years ago
  71. c7b05a4 Make the error message regex more lenient so that it matches both by Gregory P. Smith · 9 years ago
  72. 56aae8f Issue #17633: Improve support for namespace packages with zipimport. by Brett Cannon · 9 years ago
  73. 07b954d Add some "used with permission" mentions where external resources are referenced. by Brett Cannon · 9 years ago
  74. a8b43b5 Issue #25940: Merge ETIMEDOUT fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  75. 3f2240c Issue #25940: Merge ETIMEDOUT fix from 3.3 into 3.4 by Martin Panter · 9 years ago
  76. fab75d9 Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3 by Martin Panter · 9 years ago
  77. 035583b Issue #25940: On Windows, connecting to port 444 returns ETIMEDOUT by Martin Panter · 9 years ago
  78. 40b97ec Issue #25940: Update new SSL tests for self-signed.pythontest.net by Martin Panter · 9 years ago
  79. 17cbee4 Issue #25940: Merge self-signed.pythontest.net testing from 3.4 into 3.5 by Martin Panter · 9 years ago
  80. b55f8b7 Issue #25940: Update new SSL tests for self-signed.pythontest.net by Martin Panter · 9 years ago
  81. 514bb07 Issue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4 by Martin Panter · 9 years ago
  82. 73f5507 Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3 by Martin Panter · 9 years ago
  83. 3d81d93 Issue #25940: Use self-signed.pythontest.net in SSL tests by Martin Panter · 9 years ago
  84. e973620 Merge heads. by Barry Warsaw · 9 years ago
  85. b2b1217 - Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars by doko@ubuntu.com · 9 years ago
  86. 09880c8 Comment out some tests that won't pass now that we've reverted the by Barry Warsaw · 9 years ago
  87. b4b8a0e Merge 3.4 (Issue #26050) by Yury Selivanov · 9 years ago
  88. d9d0e86 Issue #26050: Add asyncio.StreamReader.readuntil() method. by Yury Selivanov · 9 years ago
  89. 4ea31f5 merge 3.4 by Andrew Svetlov · 9 years ago
  90. 9d976fa Sync with asyncio by Andrew Svetlov · 9 years ago
  91. b86abb7 merge 3.4 by Andrew Svetlov · 9 years ago
  92. c07b16b Sync with asyncio repo by Andrew Svetlov · 9 years ago
  93. ee2a392 #24789: fix docstring of ctypes.create_string_buffer. Patch by Matheus Vieira Portela. by Ezio Melotti · 9 years ago
  94. 81bc927 Issue #22138: Fix mock.patch behavior when patching descriptors. Restore by Senthil Kumaran · 9 years ago
  95. 03abf6d Hopeful fix for test_rglob_common on Windows without symlinks. (Merge 3.4->3.5) by Guido van Rossum · 9 years ago
  96. 9c39b67 Hopeful fix for test_rglob_common on Windows without symlinks. by Guido van Rossum · 9 years ago
  97. c3a8272 Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. (Merge 3.4->3.5) by Guido van Rossum · 9 years ago
  98. bc9fdda Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. by Guido van Rossum · 9 years ago
  99. 16fb674 Fix typo in docstring of multiprocessing.spawn.spawn_main() by Berker Peksag · 9 years ago
  100. 1a4afec Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5) by Guido van Rossum · 9 years ago