1. 89aa7f0 bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977) by Kyle Stanley · 6 years ago
  2. 025eeaa Fix import path for asyncio.TimeoutError (#17691) by Andrew Svetlov · 6 years ago
  3. ab513a3 bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311) by Kyle Stanley · 6 years ago
  4. 82b4950 bpo-39006: Fix asyncio when the ssl module is missing (GH-17524) by Victor Stinner · 6 years ago
  5. 892f9e0 bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions (GH-16457) by idomic · 6 years ago
  6. 7ddcd0c bpo-38529: Fix asyncio stream warning (GH-17474) by Andrew Svetlov · 6 years ago
  7. dec3672 bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491) by Batuhan Taşkaya · 6 years ago
  8. e76ee1a bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477) by Victor Stinner · 6 years ago
  9. 99eb70a bpo-38951: Use threading.main_thread() check in asyncio (GH-17433) by Hill Ma · 6 years ago
  10. 293dd23 Remove binding of captured exceptions when not used to reduce the chances of creating cycles (GH-17246) by Pablo Galindo · 6 years ago
  11. 3f8cebd bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161) by Kyle Stanley · 6 years ago
  12. 3ccdd9b closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069) by Benjamin Peterson · 6 years ago
  13. dad6be5 bpo-38785: Prevent asyncio from crashing (GH-17144) by Andrew Svetlov · 6 years ago
  14. 1b53a24 bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901) by Victor Stinner · 6 years ago
  15. b23a842 bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463) by idomic · 6 years ago
  16. e407013 Fix and improve `asyncio.run()` docs (GH-16403) by Kyle Stanley · 6 years ago
  17. 6758e6e bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482) by Yury Selivanov · 6 years ago
  18. 58498bc bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe (GH-16472) by Andrew Svetlov · 6 years ago
  19. edad4d8 bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) by Yury Selivanov · 6 years ago
  20. 17deb16 bpo-38260: Add Docs on asyncio.run (GH-16337) by Emmanuel Arias · 6 years ago
  21. 9fdc64c bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() (GH-15735) by Kyle Stanley · 6 years ago
  22. 9eb35ab bpo-38148: Add slots to asyncio transports (GH-16077) by Andrew Svetlov · 6 years ago
  23. d31b315 bpo-36889: Document Stream class and add docstrings (GH-14488) by Xtreak · 6 years ago
  24. a488879 bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033) by Andrew Svetlov · 6 years ago
  25. 7264e92 bpo-36373: Fix deprecation warnings (GH-15889) by Andrew Svetlov · 6 years ago
  26. 12c122a bpo-38066: Hide internal Stream methods (GH-15762) by Andrew Svetlov · 6 years ago
  27. 9008be3 bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queue] (GH-13950) by Emmanuel Arias · 6 years ago
  28. 537877d bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [locks] (GH-13920) by Emmanuel Arias · 6 years ago
  29. 39d87b5 Fix typos mostly in comments, docs and test names (GH-15209) by Min ho Kim · 6 years ago
  30. 1c06009 bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread (#15492) by Andrew Svetlov · 6 years ago
  31. 662db12 bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952) by Serhiy Storchaka · 6 years ago
  32. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 6 years ago
  33. 96e12d5 Fix typos in docs, comments and test assert messages (#14872) by Min ho Kim · 6 years ago
  34. 0d671c0 bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (GH-14344) by Andrew Svetlov · 6 years ago
  35. 97d15b1 Replace deprecation warning with RuntimeError (GH-14397) by Andrew Svetlov · 6 years ago
  36. 0237265 Use threadpool for reading from file in sendfile fallback mode (#14076) by Andrew Svetlov · 6 years ago
  37. ef21523 bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback mode. (GH-14075) by Andrew Svetlov · 6 years ago
  38. 65aa64f bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971) by Andrew Svetlov · 6 years ago
  39. 9aa7856 bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-13834) by Zackery Spytz · 6 years ago
  40. 6d64a8f bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [streams] (GH-13671) by Emmanuel Arias · 6 years ago
  41. 7f9a2ae Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)" (#13802) by Łukasz Langa · 6 years ago
  42. 9535aff Revert "bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)" (GH-13793) by Andrew Svetlov · 6 years ago
  43. 0f0a30f bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786) by Victor Stinner · 6 years ago
  44. 0d70227 Fix typos in docs and docstrings (GH-13745) by Xtreak · 6 years ago
  45. 13ed079 bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630) by Andrew Svetlov · 6 years ago
  46. 98ef920 bpo-36999: Add asyncio.Task.get_coro() (GH-13680) by Alex Grönholm · 6 years ago
  47. 744c08a bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628) by 依云 · 6 years ago
  48. bafd4b5 bpo-29883: Asyncio proactor udp (GH-13440) by Andrew Svetlov · 6 years ago
  49. f0d4c64 bpo-36686: Improve the documentation of the std* params in loop.subprocess_exec (GH-13586) by sbstp · 6 years ago
  50. 23b4b69 bpo-36889: Merge asyncio streams (GH-13251) by Andrew Svetlov · 6 years ago
  51. 8cd5165 bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530) by Yury Selivanov · 6 years ago
  52. 1f39c28 bpo-37035: Don't log OSError (GH-13548) by Andrew Svetlov · 6 years ago
  53. 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 6 years ago
  54. 16cefb0 bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472) by Yury Selivanov · 6 years ago
  55. d0ebf13 bpo-36932: use proper deprecation-removed directive (GH-13349) by Matthias Bussonnier · 6 years ago
  56. 9932fd9 bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-11553) by Niklas Fiekas · 6 years ago
  57. ac8eb8f bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271) by Erwan Le Pape · 6 years ago
  58. 68b34a7 bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) by Andrew Svetlov · 6 years ago
  59. 6e78900 bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418) by Andrew Svetlov · 6 years ago
  60. 54b74fe bpo-36801: Temporarily fix regression in writer.drain() (#13330) by Andrew Svetlov · 6 years ago
  61. f12ba7c bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313) by Andrew Svetlov · 6 years ago
  62. a076e4f bpo-36802: Drop awrite()/aclose(), support await write() and await close() instead (#13099) by Andrew Svetlov · 6 years ago
  63. 1cc0ee7 bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13098) by Andrew Svetlov · 6 years ago
  64. b35acc5 bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340) by Romain Picard · 6 years ago
  65. 63deaa5 bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423) by Vincent Michel · 6 years ago
  66. ad4ed87 Forbid creating of stream objects outside of asyncio (#13101) by Andrew Svetlov · 6 years ago
  67. 88f07a8 bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237) by twisteroid ambassador · 6 years ago
  68. 4737b92 bpo-24638: Improve the error message in asyncio.ensure_future() (#12848) by Zackery Spytz · 6 years ago
  69. c1964e9 bpo-36613: call remove_done_callback if exception (GH-12800) by gescheit · 6 years ago
  70. 56065d4 bpo-34139: Remove unix datagram socket from FS before binding (GH-8323) by Quentin Dawans · 6 years ago
  71. c5c6cda asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494) by Inada Naoki · 6 years ago
  72. f683f46 bpo-34745: Fix asyncio sslproto memory issues (GH-12386) by Fantix King · 6 years ago
  73. f345170 asyncio: use dict instead of OrderedDict (GH-11710) by Inada Naoki · 7 years ago
  74. c9f872b bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566) by Victor Stinner · 7 years ago
  75. b91140f bpo-11555: Enhance IocpProactor.close() log again (GH-11563) by Victor Stinner · 7 years ago
  76. b1e4573 bpo-34323: Enhance IocpProactor.close() log (GH-11555) by Victor Stinner · 7 years ago
  77. fb2c346 asyncio: __del__() keep reference to warnings.warn (GH-11491) by Victor Stinner · 7 years ago
  78. 9b07681 IocpProactor: prevent modification if closed (GH-11494) by Victor Stinner · 7 years ago
  79. 80fda71 bpo-35682: Fix _ProactorBasePipeTransport._force_close() (GH-11462) by Victor Stinner · 7 years ago
  80. 67ba547 bpo-23057: Use 'raise' to emulate ctrl-c in proactor tests (#11274) by Vladimir Matveev · 7 years ago
  81. b5c8cfa bpo-23057: add loop self socket as wakeup fd for signals (#11135) by Vladimir Matveev · 7 years ago
  82. 5344501 bpo-35394: Add empty slots to abstract asyncio protocols (#10889) by Andrew Svetlov · 7 years ago
  83. 3bc0eba bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867) by Andrew Svetlov · 7 years ago
  84. 70f61b9 bpo-35202: Remove unused imports in Lib directory (GH-10450) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 7 years ago
  85. 7438792 bpo-30064: Refactor sock_* asyncio API (#10419) by Andrew Svetlov · 7 years ago
  86. fd512d7 bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212) by Vincent Michel · 7 years ago
  87. 97cf082 bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837) by Andrew Svetlov · 7 years ago
  88. c880ffe bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716) by twisteroid ambassador · 7 years ago
  89. d5bd036 bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641) by Andrew Svetlov · 7 years ago
  90. fad6af2 asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579) by Yury Selivanov · 7 years ago
  91. 6ea29c5 bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538) by Victor Stinner · 7 years ago
  92. 558c49b bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415) by João Júnior · 7 years ago
  93. 11194c8 bpo-34666: Implement stream.awrite() and stream.aclose() (GH-9274) by Andrew Svetlov · 7 years ago
  94. 0dd7180 bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169) by Andrew Svetlov · 7 years ago
  95. a5d1eb8 bpo-34638: Store a weak reference to stream reader to break strong references loop (GH-9201) by Andrew Svetlov · 7 years ago
  96. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 7 years ago
  97. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 7 years ago
  98. 944451c bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532) by MartinAltmayer · 7 years ago
  99. 9045199 bpo-33833: Fix ProactorSocketTransport AssertionError (#7893) by twisteroid ambassador · 7 years ago
  100. 22d2508 bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (GH-8533) by Elvis Pranskevichus · 7 years ago