1. 3070b71 bpo-32422: Reduce lru_cache memory usage (GH-5008) by INADA Naoki · 7 years ago
  2. 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 7 years ago
  3. 1b3029a bpo-29084: Exclude C API for OrderedDict from the limited C API. (#4900) by Serhiy Storchaka · 7 years ago
  4. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 7 years ago
  5. 8a58771 bpo-24960: use pkgutil.get_data in lib2to3 to read pickled grammar files (#4977) by Benjamin Peterson · 7 years ago
  6. 4a02543 bpo-26133: Dont unsubscribe signals in UNIX even loop on interpreter shutdown (#4956) by Andrew Svetlov · 7 years ago
  7. fbd6051 bpo-32323: urllib.parse.urlsplit() must not lowercase() IPv6 scope value (#4867) by Коренберг Марк · 7 years ago
  8. 09dc2f5 bpo-15873: Implement [date][time].fromisoformat (#4699) by Paul Ganssle · 7 years ago
  9. 507434f bpo-15216: io: TextIOWrapper.reconfigure() accepts encoding, errors and newline (GH-2343) by INADA Naoki · 7 years ago
  10. 31e9908 bpo-32030: Fix usage of memory allocators (#4953) by Victor Stinner · 7 years ago
  11. 1f1a34c bpo-32379: Faster MRO computation for single inheritance (#4932) by Antoine Pitrou · 7 years ago
  12. 776407f bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611) by Marcel Plch · 7 years ago
  13. f7686c1 bpo-29970: Add timeout for SSL handshake in asyncio by Neil Aspinall · 7 years ago
  14. c5ae169 bpo-26439 Fix ctypes.util.find_library failure on AIX (#4507) by Michael Felt · 7 years ago
  15. 319c034 bpo-29711: Fix stop_serving in proactor loop kill all listening servers (#431) by Julien Duponchelle · 7 years ago
  16. 36c2c04 bpo-32355: Optimize asyncio.gather() (#4913) by Yury Selivanov · 7 years ago
  17. a9d7e55 bpo-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915) by Yury Selivanov · 7 years ago
  18. 9818142 bpo-32331: Fix socket.type when SOCK_NONBLOCK is available (#4877) by Yury Selivanov · 7 years ago
  19. d757aaf bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914) by Yury Selivanov · 7 years ago
  20. b2a6083 bpo-19764: Implemented support for subprocess.Popen(close_fds=True) on Windows (#1218) by Segev Finer · 7 years ago
  21. 902ab80 bpo-30050: Allow disabling full buffer warnings in signal.set_wakeup_fd (#4792) by Nathaniel J. Smith · 7 years ago
  22. 1b7c11f bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907) by Yury Selivanov · 7 years ago
  23. 5382c05 bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908) by Andrew Svetlov · 7 years ago
  24. 44d1a59 bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799) by Andrew Svetlov · 7 years ago
  25. 9c19b02 bpo-32002: Refactor C locale coercion tests (GH-4369) by Nick Coghlan · 7 years ago
  26. e796b2f bpo-27456: Ensure TCP_NODELAY is set on linux (#4231) by Yury Selivanov · 7 years ago
  27. 4ac5150 bpo-32248: Implement importlib.abc.ResourceReader (GH-4892) by Brett Cannon · 7 years ago
  28. 3327a2d bpo-32265: Classify class and static methods of builtin types. (#4776) by Serhiy Storchaka · 7 years ago
  29. 2e3f570 bpo-30416: Protect the optimizer during constant folding. (#4860) by Serhiy Storchaka · 7 years ago
  30. 3325a67 bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880) by Serhiy Storchaka · 7 years ago
  31. e425bd7 move pygetopt.h to internal (closes bpo-32264) (#4830) by Benjamin Peterson · 7 years ago
  32. f74ef45 bpo-32311: Implement asyncio.create_task() shortcut (#4848) by Andrew Svetlov · 7 years ago
  33. 19a44f6 bpo-32327: Convert asyncio functions documented as coroutines to coroutines. (#4872) by Yury Selivanov · 7 years ago
  34. 358e5e1 bpo-32329: Fix -R option for hash randomization (#4873) by Victor Stinner · 7 years ago
  35. 96a5e50 bpo-32143: add f_fsid to os.statvfs() (#4571) by Giuseppe Scrivano · 7 years ago
  36. 2b5fd1e bpo-32226: Implementation of PEP 560 (core components) (#4732) by Ivan Levkivskyi · 7 years ago
  37. 233ef24 bpo-32277: Fix exception raised from chmod(..., follow_symlinks=False) (#4797) by Anthony Sottile · 7 years ago
  38. 02a0a19 bpo-32314: Implement asyncio.run() (#4852) by Yury Selivanov · 7 years ago
  39. 5364b5c bpo-32225: Implementation of PEP 562 (#4731) by Ivan Levkivskyi · 7 years ago
  40. 9e7c136 bpo-32302: Fix distutils bdist_wininst for CRT v142 (#4851) by Victor Stinner · 7 years ago
  41. 7ea143a bpo-29469: Move constant folding to AST optimizer (GH-2858) by INADA Naoki · 7 years ago
  42. 176baa3 bpo-30241: implement contextlib.AbstractAsyncContextManager (#1412) by Jelle Zijlstra · 7 years ago
  43. a70232f bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827) by Yury Selivanov · 7 years ago
  44. 91106cd bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) by Victor Stinner · 7 years ago
  45. 317def9 bpo-17852: Revert incorrect fix based on misunderstanding of _Py_PyAtExit() semantics (#4826) by Antoine Pitrou · 7 years ago
  46. 747f48e bpo-32230: Set sys.warnoptions with -X dev (#4820) by Victor Stinner · 7 years ago
  47. 4ae06c5 bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#4748) by Serhiy Storchaka · 7 years ago
  48. 2001900 bpo-32255: Always quote a single empty field when write into a CSV file. (#4769) by Licht Takeuchi · 7 years ago
  49. e569753 bpo-32227: functools.singledispatch supports registering via type annotations (#4733) by Łukasz Langa · 7 years ago
  50. abae67e Add asyncio.get_running_loop() function. (#4782) by Yury Selivanov · 7 years ago
  51. 3e97518 bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785) by Yury Selivanov · 7 years ago
  52. 9edad3c bpo-32272: Remove asyncio.async() function. (#4784) by Yury Selivanov · 7 years ago
  53. 48d4dd9 bpo-32252: Fix faulthandler_suppress_crash_report() (#4794) by Victor Stinner · 7 years ago
  54. 780acc8 bpo-31506: Improve the error message logic for class instantiation (GH-4740) by Sanyam Khurana · 7 years ago
  55. 4e3e156 bpo-32260: don't byte swap siphash keys (#4771) by Benjamin Peterson · 7 years ago
  56. 42aa93b closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) by Benjamin Peterson · 7 years ago
  57. 28d8d14 bpo-32253: Deprecate with statement and bare await for asyncio locks (GH-4764) by Andrew Svetlov · 7 years ago
  58. 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 7 years ago
  59. ede1573 bpo-22589 Changed MIME type of .bmp to "image/bmp" (#4756) by Nitish Chandra · 7 years ago
  60. 961dbe0 bpo-32199: The getnode() ip getter now uses 'ip link' instead of 'ip link list' (GH-4696) by xdegaye · 7 years ago
  61. 3f9a728 Update NEWS and pydoc topics. by Ned Deily · 7 years ago
  62. d4d2b56 Tidy NEWS entry. by Ned Deily · 7 years ago
  63. b3edde8 bpo-31380: Skip test_httpservers test_undecodable_file on macOS. (#4720) by Ned Deily · 7 years ago
  64. 24e0469 bpo-31392: Update macOS installer to use OpenSSL 1.0.2m (#4715) by Ned Deily · 7 years ago
  65. 8837dd0 bpo-19610: Warn if distutils is provided something other than a list to some fields (#4685) by Neil Schemenauer · 7 years ago
  66. 29bc193 [bpo-28556] Minor fixes for typing module (#4710) by Ivan Levkivskyi · 7 years ago
  67. ca7562a bpo-28791: Update macOS installer to use SQLite 3.21.0. (#4245) by Mariatta · 7 years ago
  68. f0db54a bpo-32214: Implement PEP 557: Data Classes (#4704) by Eric V. Smith · 7 years ago
  69. 1e2fcac bpo-32207: Improve tk event exception tracebacks in IDLE. (#4703) by Terry Jan Reedy · 7 years ago
  70. 70d56fb bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4471) by Serhiy Storchaka · 7 years ago
  71. 85d5c18 bpo-27240 Rewrite the email header folding algorithm. (#3488) by R. David Murray · 7 years ago
  72. 1fb72d2 bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570) by Serhiy Storchaka · 7 years ago
  73. 078f181 bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675) by Nick Coghlan · 7 years ago
  74. bf2b65e bpo-28668: test.support.requires_multiprocessing_queue is removed (GH-4560) by xdegaye · 7 years ago
  75. 73a7e9b bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH-4579) by Serhiy Storchaka · 7 years ago
  76. 6a89481 bpo-32186: Release the GIL during lseek and fstat (#4652) by Nir Soffer · 7 years ago
  77. a897aee bpo-32072: Fix issues with binary plists. (#4455) by Serhiy Storchaka · 7 years ago
  78. b4d1e1f bpo-20891: Fix PyGILState_Ensure() (#4650) by Victor Stinner · 7 years ago
  79. 986375e bpo-28416: Break reference cycles in Pickler and Unpickler subclasses (#4080) by Serhiy Storchaka · 7 years ago
  80. 86afc1f Skip test_socket.test_sha256() on linux < 4.5 (#4643) by Victor Stinner · 7 years ago
  81. 5e3806f bpo-32101: Add PYTHONDEVMODE environment variable (#4624) by Victor Stinner · 7 years ago
  82. 706e10b bpo-32121: Add most_recent_first parameter to tracemalloc.Traceback.format (#4534) by Jesse-Bakker · 7 years ago
  83. 859f7ce bpo-32159: Revert Misc/svnmap.txt (#4639) by Victor Stinner · 7 years ago
  84. ef83806 bpo-32138: Skip on Android test_faulthandler tests that raise SIGSEGV (GH-4604) by xdegaye · 7 years ago
  85. 041efd2 bpo-32164: Delete unused file idlelib/tabbedpages.py (#4628) by Terry Jan Reedy · 7 years ago
  86. 219c2de bpo-32110: codecs.StreamReader.read(n) now returns not more than n (#4499) by Serhiy Storchaka · 7 years ago
  87. 23df2d1 bpo-32107 - Improve MAC address calculation and fix test_uuid.py (#4600) by Barry Warsaw · 7 years ago
  88. 71bd588 bpo-32155: Revert distutils.config change (#4618) by Victor Stinner · 7 years ago
  89. fe2d5ba bpo-32159: Remove tools for CVS and Subversion (#4615) by Victor Stinner · 7 years ago
  90. ac577d7 bpo-32154: Remove asyncio.windows_utils.socketpair (#4609) by Victor Stinner · 7 years ago
  91. a489599 bpo-32046: Update 2to3 when converts operator.isCallable(obj). (#4417) by Dong-hee Na · 7 years ago
  92. 696b501 bpo-32155: Bugfixes found by flake8 F841 warnings (#4608) by Victor Stinner · 7 years ago
  93. c9409f7 Revert "bpo-32107 - Better merge of #4494 (#4576)" (#4593) by Victor Stinner · 7 years ago
  94. 39f0bb5 bpo-32136: Separate embedding tests from C API tests (GH-4567) by Nick Coghlan · 7 years ago
  95. 9522a21 bpo-32107 - Better merge of #4494 (#4576) by Barry Warsaw · 7 years ago
  96. c975878 bpo-27535: Fix memory leak with warnings ignore (#4489) by Victor Stinner · 7 years ago
  97. 21c7730 bpo-32089: Use default action for ResourceWarning (#4584) by Victor Stinner · 7 years ago
  98. ede2ac9 bpo-23033: Improve SSL Certificate handling (GH-937) by Mandeep Singh · 7 years ago
  99. 0cd2e81 bpo-29879: Update typing documentation. (GH-4573) by Ivan Levkivskyi · 7 years ago
  100. a6fba9b bpo-32126: Skip asyncio test when sem_open() is not functional (GH-4559) by xdegaye · 7 years ago