1. b261475 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  2. 8e16351 allow test to work on implementations not using ref-counting (closes #22265) by Benjamin Peterson · 10 years ago
  3. 18bb702 fix some test_weakref tests to not rely on ref-counting (closes #22267) by Benjamin Peterson · 10 years ago
  4. 549c197 Issue #22034: Got rid of misleading error message for bytearray arguments in by Serhiy Storchaka · 10 years ago
  5. d00aff2 Issue #22236: Tkinter tests now don't reuse default root window. New root by Serhiy Storchaka · 10 years ago
  6. 130f303 Merge heads. by Terry Jan Reedy · 10 years ago
  7. 0242f79 Issue #19447: Use importlib.util.cache_from_source() instead of ``bad_coding + 'c'``. by Berker Peksag · 10 years ago
  8. 31f8a67 Issue #19447: Add a test case to py_compile.compile() to make sure by Berker Peksag · 10 years ago
  9. 14ad531 Issue #22191: Fix warnings.__all__. by Brett Cannon · 10 years ago
  10. a969ae2 Fix issue22245 - Fix urllib2_localnet test. by Senthil Kumaran · 10 years ago
  11. 7837376 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. by Senthil Kumaran · 10 years ago
  12. 37ed873 Idle ColorDelegator: finish removing code for 'as'. by Terry Jan Reedy · 10 years ago
  13. c1a723a Idle ColorDelegator: remove special case code for 'as' in import statements. by Terry Jan Reedy · 10 years ago
  14. 996c3de Fixed typo. by Serhiy Storchaka · 10 years ago
  15. 76b4765 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. by Serhiy Storchaka · 10 years ago
  16. d6ec309 Clean up test_user_command. by Serhiy Storchaka · 10 years ago
  17. 0c56bb9 remove 2.2 and 2.6 compat code (closes #22200) by Benjamin Peterson · 10 years ago
  18. d9e9528 Issue #22165: Fixed test_undecodable_filename on Mac OS. by Serhiy Storchaka · 10 years ago
  19. 87bbf25 Issue #22068: Avoided reference loops with Variables and Fonts in Tkinter. by Serhiy Storchaka · 10 years ago
  20. 97f17ff Issue #22201: Command-line interface of the zipfile module now correctly by Serhiy Storchaka · 10 years ago
  21. a64ce5d Issue #22165: Fixed test_undecodable_filename on non-UTF-8 locales. by Serhiy Storchaka · 10 years ago
  22. cb5bc40 Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names. by Serhiy Storchaka · 10 years ago
  23. 402df09 backout changeset 3435c5865cfc due to buildbot failures. Ref #8797 by Senthil Kumaran · 10 years ago
  24. 7869a4e Closes #22188: test_gdb now runs gdb with -nx: "Do not execute commands from by Victor Stinner · 10 years ago
  25. 8e7966b Closes #22205: sys._debugmallocstats is a cpython specific feature, so by Victor Stinner · 10 years ago
  26. b2e3a93 Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately. Initial patch by Sam Bull. by Senthil Kumaran · 10 years ago
  27. f819ef7 Issue #22065: Update turtledemo menu creation; don't use obsolete Menubutton. by Terry Jan Reedy · 10 years ago
  28. 011b55b #22053: actually remove .txt files from 3.4. by Terry Jan Reedy · 10 years ago
  29. 94ee51e Issue #10291: Backport 004fe3449193 with a few changes due to 22095. by Terry Jan Reedy · 10 years ago
  30. 0726ddf Issue #17390: Adjust Editor window title. Remove 'Python', move version to end. by Terry Jan Reedy · 10 years ago
  31. 143fe05 Issue #21445: Pass exception messages correctly to assertTrue in by Berker Peksag · 10 years ago
  32. cd3aacf5 Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems() by Serhiy Storchaka · 10 years ago
  33. 4d58897 Issue 22184: Early detection and reporting of missing lru_cache parameters by Raymond Hettinger · 10 years ago
  34. 4d83192 Decreased memory requirements of new tests added in issue21448. by Serhiy Storchaka · 10 years ago
  35. 320a1c0 Issue #21448: Fixed FeedParser feed() to avoid O(N**2) behavior when parsing long line. by Serhiy Storchaka · 10 years ago
  36. 6f20170 Issue #17923: glob() patterns ending with a slash no longer match non-dirs on by Serhiy Storchaka · 10 years ago
  37. c04d468 Issue #20746: Fix test_pdb to run in refleak mode (-R). Patch by Xavier de Gaye. by Antoine Pitrou · 10 years ago
  38. 6d20168 Close #22175: Improve test_faulthandler readability with dedent. by Victor Stinner · 10 years ago
  39. 4f06d60 Issue #22161: Conformed arguments type checks in ctype to actually supported by Serhiy Storchaka · 10 years ago
  40. da26cca Issue #14105: Stop removing breakpoints from Idle editors. by Terry Jan Reedy · 10 years ago
  41. 5a794c1 Issue #22060: Clean up/simplify test_ctypes, use test discovery by Zachary Ware · 10 years ago
  42. 41ad77c Issue #20056: Fixed deprecation warning about bytes path in test_shutil on by Serhiy Storchaka · 10 years ago
  43. 1241c47 #22092: use absolute imports in unittest tests. Patch by Vajrasky Kok. by Ezio Melotti · 10 years ago
  44. 12b7f48 #11955: show the list of args in case of error in test_argparse. by Ezio Melotti · 10 years ago
  45. 69fb6a4 Issue #22104: Don't hold a reference to the loaded TestSuite in runtest_inner by Zachary Ware · 10 years ago
  46. d577480 #20977: fix undefined name in the email module. Patch by Rose Ames. by Ezio Melotti · 10 years ago
  47. 4036d87 PEP 8 spacing in idlelib.configDialog: mostly a = b in assignments, by Terry Jan Reedy · 10 years ago
  48. 2240533 Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog. by Terry Jan Reedy · 10 years ago
  49. 74596a8 Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. by Serhiy Storchaka · 10 years ago
  50. 95a9e0b Issue #21951: Temporary skip crashing test_user_command on AIX. by Serhiy Storchaka · 10 years ago
  51. 9c9f1f1 Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, by Victor Stinner · 10 years ago
  52. f2ed889 asyncio: Use the new os.set_blocking() function of Python 3.5 if available by Victor Stinner · 10 years ago
  53. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  54. 7e55db2 Issue #17172: Add the ability to run turtledemo from Idle. by Terry Jan Reedy · 10 years ago
  55. c61c170 Issue #18174: Fix leak of file descriptor in test_tempfile by Victor Stinner · 10 years ago
  56. 623138c Issue #11453, #18174: Fix leak of file descriptor in test_asyncore by Victor Stinner · 10 years ago
  57. 0970657 Fix sporadic failure of test_pep277 on Windows: use support.rmtree() instead of by Victor Stinner · 10 years ago
  58. 7611964 Fix test_bytes when sys.stdin is None, for example on Windows when using by Victor Stinner · 10 years ago
  59. 42d3bde asyncio, tulip issue 196: ProactorIocp._register() now registers the overlapped by Victor Stinner · 10 years ago
  60. 8b95d5e Modernize turtledemo with conditional expressions; remove duplicate line. by Terry Jan Reedy · 10 years ago
  61. e3416e6 Reduce unnecessary 2.7 versus 3.4+ differences in idlelib/configDialog.py. by Terry Jan Reedy · 10 years ago
  62. d2e9fdf Issue #22074: Fix Lib/test/make_ssl_certs.py by Antoine Pitrou · 10 years ago
  63. f21fcd0 Accept optional lock object in Condition ctor (tulip issue #198) by Andrew Svetlov · 10 years ago
  64. e254e53 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError by Victor Stinner · 10 years ago
  65. 51e44ea Tulip issue 196: _OverlappedFuture.set_result() now clears its reference to the by Victor Stinner · 10 years ago
  66. 5a2146a Issue #22044: Fixed premature DECREF in call_tzinfo_method. by Raymond Hettinger · 10 years ago
  67. 65dd69a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  68. e396c36 Merge. by Charles-François Natali · 10 years ago
  69. 65708cf Issue #19875: Fix random test_getsockaddrarg() failure. by Charles-François Natali · 10 years ago
  70. 2955a0b asyncio, test_subprocess: relax timings for slow builbots by Victor Stinner · 10 years ago
  71. 18a28dc asyncio: sync with Tulip by Victor Stinner · 10 years ago
  72. 1a901cc Issue #22061: Add deprecation warnings in empty obsolete methods. by Serhiy Storchaka · 10 years ago
  73. 5c1b8f3 Issue #22061: remove call of useless function slated for removal. by Terry Jan Reedy · 10 years ago
  74. 280aace Issue #22053: Make help work, after previous patch for this issue disabled it by Terry Jan Reedy · 10 years ago
  75. fea6a10 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  76. 45cff66 Issue #16133: The asynchat.async_chat.handle_read() method now ignores by Victor Stinner · 10 years ago
  77. a3c80ce Issue #19884: readline: Disable the meta modifier key if stdout is not a by Victor Stinner · 10 years ago
  78. cdb2c60 test_gettext: use support.rmtree() instead of shutil.rmtree() by Victor Stinner · 10 years ago
  79. 0e24361 asyncio tests: relax timings for slow buildbots by Victor Stinner · 10 years ago
  80. 5006b1f Issue #20055: Fix BaseEventLoop.stop() docstring, incomplete sentence. by Victor Stinner · 10 years ago
  81. b8352e7 Issue #22053: Cleanup turtledemo start and stop and fix debug shutdown warning. by Terry Jan Reedy · 10 years ago
  82. 88b2b45 Issue #19493: Fix two uses of ctypes.test.requires (it's not a decorator) by Zachary Ware · 10 years ago
  83. efa9c80 Merge heads by Serhiy Storchaka · 10 years ago
  84. 1ce2289 Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set() by Serhiy Storchaka · 10 years ago
  85. b03f042 Issue #21597: Turtledemo text pane can now be widened to view or copy complete by Terry Jan Reedy · 10 years ago
  86. f012ba4 Issue #22002: Make full use of test discovery in test sub-packages. by Zachary Ware · 10 years ago
  87. c4c4649 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  88. 8966759 Issue #21888: plistlib's load() and loads() now work if the fmt parameter is by Serhiy Storchaka · 10 years ago
  89. 889d646 Issue #21901: Cap the maximum number of file descriptors to use for the test. by Charles-François Natali · 10 years ago
  90. 31e7bfa asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutine by Victor Stinner · 10 years ago
  91. 1392df9 Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value. by Serhiy Storchaka · 10 years ago
  92. bc07ac5 Fix localhost checking in FileHandler. Raised in #21970. by Senthil Kumaran · 10 years ago
  93. dfab935 Issue #21976: Fix test_ssl to accept LibreSSL version strings. by Antoine Pitrou · 10 years ago
  94. 47ae763 Issue #19629: Add missing "import stat" by Victor Stinner · 10 years ago
  95. ec86469 Issue #19811, #22022: test_pathlib uses support.rmtree() instead of by Victor Stinner · 10 years ago
  96. 67f8706 Issue #19629: Fix support.rmtree(), use os.lstat() to check if the file is a by Victor Stinner · 10 years ago
  97. 0dee8ad asyncio: Fix test_stdin_broken_pipe(), drain() is not a coroutine by Victor Stinner · 10 years ago
  98. 854e76e Issue #21868: Prevent turtle crash due to invalid undo buffer size. by Raymond Hettinger · 10 years ago
  99. be0a2d7 Fix asyncio.__all__: export also unix_events and windows_events symbols by Victor Stinner · 10 years ago
  100. 98fa332 Issue #21247: Fix a race condition in test_send_signal() of asyncio by Victor Stinner · 10 years ago