1. 88b2b45 Issue #19493: Fix two uses of ctypes.test.requires (it's not a decorator) by Zachary Ware · 10 years ago
  2. efa9c80 Merge heads by Serhiy Storchaka · 10 years ago
  3. 1ce2289 Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set() by Serhiy Storchaka · 10 years ago
  4. b03f042 Issue #21597: Turtledemo text pane can now be widened to view or copy complete by Terry Jan Reedy · 10 years ago
  5. f012ba4 Issue #22002: Make full use of test discovery in test sub-packages. by Zachary Ware · 10 years ago
  6. c4c4649 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  7. 8966759 Issue #21888: plistlib's load() and loads() now work if the fmt parameter is by Serhiy Storchaka · 10 years ago
  8. 64a1207 Correct issue #21044 patch author. by Serhiy Storchaka · 10 years ago
  9. 588517c Fix grammar by Andrew Svetlov · 10 years ago
  10. 889d646 Issue #21901: Cap the maximum number of file descriptors to use for the test. by Charles-François Natali · 10 years ago
  11. 31e7bfa asyncio, tulip issue 193: Convert StreamWriter.drain() to a classic coroutine by Victor Stinner · 10 years ago
  12. 1392df9 Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value. by Serhiy Storchaka · 10 years ago
  13. cb7d43c Merge heads by Serhiy Storchaka · 10 years ago
  14. 17f5f81 Issue #15759: "make suspicious", "make linkcheck" and "make doctest" in Doc/ by Serhiy Storchaka · 10 years ago
  15. bc07ac5 Fix localhost checking in FileHandler. Raised in #21970. by Senthil Kumaran · 10 years ago
  16. dfab935 Issue #21976: Fix test_ssl to accept LibreSSL version strings. by Antoine Pitrou · 10 years ago
  17. 47ae763 Issue #19629: Add missing "import stat" by Victor Stinner · 10 years ago
  18. ec86469 Issue #19811, #22022: test_pathlib uses support.rmtree() instead of by Victor Stinner · 10 years ago
  19. 67f8706 Issue #19629: Fix support.rmtree(), use os.lstat() to check if the file is a by Victor Stinner · 10 years ago
  20. 0dee8ad asyncio: Fix test_stdin_broken_pipe(), drain() is not a coroutine by Victor Stinner · 10 years ago
  21. 854e76e Issue #21868: Prevent turtle crash due to invalid undo buffer size. by Raymond Hettinger · 10 years ago
  22. 01963e6 add # by Benjamin Peterson · 10 years ago
  23. 102488b args doesn't need to be a tuple (closes #17210) by Benjamin Peterson · 10 years ago
  24. e004c6c Issue #22006: Remove outdated _thread caveat. Thanks Dan O'Reilly for the report. by Mark Dickinson · 10 years ago
  25. 0069eac Issue #22004: Correct an argument name. by Zachary Ware · 10 years ago
  26. be0a2d7 Fix asyncio.__all__: export also unix_events and windows_events symbols by Victor Stinner · 10 years ago
  27. 98fa332 Issue #21247: Fix a race condition in test_send_signal() of asyncio by Victor Stinner · 10 years ago
  28. fe5649c Python issue #21645, Tulip issue 192: Rewrite signal handling by Victor Stinner · 10 years ago
  29. ddc8c8d asyncio: Fix test_stdin_broken_pipe(), drain() can also raise by Victor Stinner · 10 years ago
  30. d55b54d asyncio, tulip issue 190: Process.communicate() now ignores by Victor Stinner · 10 years ago
  31. cc996b5 asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError by Victor Stinner · 10 years ago
  32. 38bf87c Issue #21994: Fix SyntaxError in the SSLContext.check_hostname documentation. by Berker Peksag · 10 years ago
  33. 2c6a3ae Issue 21044: tarfile.open() now handles fileobj with an integer 'name' by Serhiy Storchaka · 10 years ago
  34. 8faecbf Fix a minor typo in the turtle docs. Found by Brandon Passmore on docs@. by Zachary Ware · 10 years ago
  35. 2b0a610 Issue #21918: Convert test_tools.py to a sub-package of test. by Zachary Ware · 10 years ago
  36. 52b2bc0 Remove Tools/scripts/pydocgui.pyw. by Zachary Ware · 10 years ago
  37. accef5c asyncio: test_as_completed(): disable "slow callback" warning by Victor Stinner · 10 years ago
  38. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 10 years ago
  39. f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 10 years ago
  40. 1314f06 asyncio: test_selector_events: remove duplicate call to _on_handshake() method by Victor Stinner · 10 years ago
  41. 9b7f9e6 Issue #21765: Add support for non-ascii identifiers to HyperParser by Tal Einat · 10 years ago
  42. cfa8950 Issue #21982: Add minimal unittest for configDialog with 46% coverage. by Terry Jan Reedy · 10 years ago
  43. 1cae9ec asyncio tests: make quiet the logs of SSL handshake failures when running tests by Victor Stinner · 10 years ago
  44. acdb782 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  45. b1ebfdd Call PyErr_NoMemory() when PyMem_Malloc() fails. by Serhiy Storchaka · 10 years ago
  46. 8323f68 Issue 21977: Minor improvements to the regexes in the tokenizer example. by Raymond Hettinger · 10 years ago
  47. 5283c4e Issue #18592: Method return signature changes made to SearchDialogBase for by Terry Jan Reedy · 10 years ago
  48. 5d0d2e6 Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  49. 217f4cd Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  50. 915a30f Issue #21323: Fix http.server to again handle scripts in CGI subdirectories, by Ned Deily · 10 years ago
  51. ad5ffd4 Issue #19076: Don't pass the redundant 'file' argument to self.error(). by Berker Peksag · 10 years ago
  52. 4bfb14a asyncio: Server.close() leaves client sockets open by Victor Stinner · 10 years ago
  53. e912e65 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  54. 8ebeb03 asyncio: improve the documentation of servers by Victor Stinner · 10 years ago
  55. b28dbac asyncio, Tulip issue 180: Make Server attributes and methods private by Victor Stinner · 10 years ago
  56. 7aee3ec Issue #21906: Make Tools/scripts/md5sum.py work in Python 3. by Berker Peksag · 10 years ago
  57. 778015b asyncio: enhance documentation of platform support by Victor Stinner · 10 years ago
  58. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  59. 3740d58 Issue #18592: Make unittest for SearchDialogBase work on all tk versions. by Terry Jan Reedy · 10 years ago
  60. be25426 Idle News entries. by Terry Jan Reedy · 10 years ago
  61. 223dd8d #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar. by Terry Jan Reedy · 10 years ago
  62. 737c34f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  63. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  64. f68bd88 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  65. eb43214 Issue #21942: Fixed source file viewing in pydoc's server mode on Windows. by Zachary Ware · 10 years ago
  66. 7cca28f Issue #21940: add docstrings to idlelib.WidgetRedirector. by Terry Jan Reedy · 10 years ago
  67. 740c730 Issues #21948 and #16040: Fix typos. by Berker Peksag · 10 years ago
  68. bfff45d asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits by Victor Stinner · 10 years ago
  69. aea8229 Issue #21680: Document asyncio event loops by Victor Stinner · 10 years ago
  70. 530ef2f Update asyncio documentation by Victor Stinner · 10 years ago
  71. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  72. 630a4f6 Issue #11259: asynchat.async_chat().set_terminator() now raises a ValueError if by Victor Stinner · 10 years ago
  73. fd5d1b5 asynchat: PEP8-ify the code by Victor Stinner · 10 years ago
  74. d9e810a Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't by Victor Stinner · 10 years ago
  75. ab826d1 Issue #21925: PyImport_Cleanup(): Remove unused parameter in by Victor Stinner · 10 years ago
  76. cd75298 Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" format requires by Victor Stinner · 10 years ago
  77. ef03565 Issue #17846: Clarify note about Solution Folders. by Zachary Ware · 10 years ago
  78. 2170b14 Fix MSVC edition mismatch. by Zachary Ware · 10 years ago
  79. a90afbc Issue #21707: Fix tests on Windows. by Berker Peksag · 10 years ago
  80. 799a60c asyncio: sync with Tulip by Victor Stinner · 10 years ago
  81. 1a870c9 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  82. 11116da Merge heads by Serhiy Storchaka · 10 years ago
  83. 0a0d1da Issue #21707: Add missing kwonlyargcount argument to ModuleFinder.replace_paths_in_code(). by Berker Peksag · 10 years ago
  84. 6f1435c Issue #21881: Just omit tests for platform-specific NaN representation in test_tcl. by Serhiy Storchaka · 10 years ago
  85. 344f831 Issue #19593: Use specific asserts in importlib tests. by Serhiy Storchaka · 10 years ago
  86. 3bc13cc Merge heads by Serhiy Storchaka · 10 years ago
  87. 667abc7 Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaN by Serhiy Storchaka · 10 years ago
  88. e50dafc Issue #20639: calling Path.with_suffix('') allows removing the suffix again. by Antoine Pitrou · 10 years ago
  89. 7084e73 Issue #21714: Disallow the construction of invalid paths using Path.with_name(). Original patch by Antony Lee. by Antoine Pitrou · 10 years ago
  90. 7bc5fb6 Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compiler by Ned Deily · 10 years ago
  91. 898eb82 #20135: move FAQ about mutable default arguments to the programming FAQs page. by Ezio Melotti · 10 years ago
  92. 63b21a8 Closes #21921: Fix ResourceWarning in the asyncio examples: close the event by Victor Stinner · 10 years ago
  93. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  94. 5021cb5 Issue #21920: Add a missing colon to the __main__ doc. by Berker Peksag · 10 years ago
  95. acc8cf2 Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called. by Antoine Pitrou · 10 years ago
  96. e865128 properly decref the return value of close() by Benjamin Peterson · 10 years ago
  97. a33bce0 Issue #21892, #21893: Partial revert of changeset 4f55e802baf0, PyErr_Format() by Victor Stinner · 10 years ago
  98. 3410af4 Add an index entry for exec() builtin. by Berker Peksag · 10 years ago
  99. ad4690f Issue #21151: Fixed a segfault in the winreg module. by Zachary Ware · 10 years ago
  100. 0d50af4 Update docs about tp_richcompare by Andrew Svetlov · 10 years ago