- 8085f74 bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21925) by Zackery Spytz · 4 years ago
- 5b0194e bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396) by Wansoo Kim · 4 years ago
- e4fe303 bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (GH-23521) by Yurii Karabas · 4 years ago
- e3ef4d7 bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-21533) by Alex Grönholm · 4 years ago
- f533cb8 bpo-42392: Remove loop parameter from asyncio.streams (GH-23517) by Yurii Karabas · 4 years ago
- b9127dd bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499) by Yurii Karabas · 4 years ago
- 0ec34ca bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420) by Yurii Karabas · 4 years ago
- 7e5ef0a bpo-42140: Improve asyncio.wait function (GH-22938) by Diogo Dutra · 4 years ago
- 42d873c bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-23020) by Andrew Svetlov · 4 years ago
- 3d86d09 bpo-42230: Improve asyncio documentation regarding accepting sets vs iterables (GH-23073) by Jakub Stasiak · 4 years ago
- 1b0f0e3 bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197) by Victor Stinner · 4 years, 2 months ago
- 0770ad9 bpo-41696: Fix handling of debug mode in asyncio.run (#22069) by Shantanu · 4 years, 2 months ago
- ea5a636 bpo-39010: Fix errors logged on proactor loop restart (#22017) by Ben Darnell · 4 years, 2 months ago
- a2118a1 bpo-37658: Fix asyncio.wait_for() to respect waited task status (#21894) by Elvis Pranskevichus · 4 years, 2 months ago
- c517fc7 bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (#21895) by Elvis Pranskevichus · 4 years, 2 months ago
- 1afb42c bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) by Cleber Rosa · 4 years, 3 months ago
- 29f8429 bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method not a coroutine (GH-21852) by James Weaver · 4 years, 3 months ago
- 602a971 bpo-41467: Fix asyncio recv_into() on Windows (GH-21720) by Victor Stinner · 4 years, 3 months ago
- 0dd98c2 bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (#21595) by Alex Grönholm · 4 years, 4 months ago
- d42528a bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15312) by Vinay Sharma · 4 years, 4 months ago
- 568fb0f bpo-41273: asyncio's proactor read transport's better performance by using recv_into instead of recv (#21442) by Tony Solomonik · 4 years, 4 months ago
- 004e64e bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all_tasks() (GH-20874) by Rémi Lapeyre · 4 years, 4 months ago
- 2b20136 Fix asyncio.to_thread() documented return type (GH-20547) by Kyle Stanley · 4 years, 5 months ago
- 210a137 bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369) by Fantix King · 4 years, 5 months ago
- 0f56263 bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278) by Kyle Stanley · 4 years, 6 months ago
- f2947e3 s/wakup/wakeup (GH-20250) by Kunal Bhalla · 4 years, 6 months ago
- cc2bbc2 bpo-32309: Implement asyncio.to_thread() (GH-20143) by Kyle Stanley · 4 years, 6 months ago
- da742ba bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951) by Chris Jerdonek · 4 years, 6 months ago
- 1ce5841 bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979) by Chris Jerdonek · 4 years, 6 months ago
- 382a563 bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (GH-20054) by romasku · 4 years, 6 months ago
- 9054967 bpo-40443: Remove unused imports in the stdlib (GH-19803) by Victor Stinner · 4 years, 6 months ago
- 02152b7 Fix typo from Lib/asyncio/events.py (GH-19410) by Galden · 4 years, 7 months ago
- 4482337 bpo-39764: Make Task.get_stack accept ag_frame (#18669) by Lidi Zheng · 4 years, 8 months ago
- 374d998 bpo-39609: set the thread_name_prefix for the default asyncio executor (GH-18458) by Markus Mohrhard · 4 years, 8 months ago
- 90d9ba6 bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533) by Andrew Svetlov · 4 years, 9 months ago
- 0ca7cc7 bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552) by Kyle Stanley · 4 years, 10 months ago
- 10ac0cd bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) by Andrew Svetlov · 4 years, 10 months ago
- 3a5de51 Fix #39191: Don't spawn a task before failing (#17796) by Andrew Svetlov · 4 years, 10 months ago
- 89aa7f0 bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977) by Kyle Stanley · 4 years, 10 months ago
- 025eeaa Fix import path for asyncio.TimeoutError (#17691) by Andrew Svetlov · 4 years, 11 months ago
- ab513a3 bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311) by Kyle Stanley · 5 years ago
- 82b4950 bpo-39006: Fix asyncio when the ssl module is missing (GH-17524) by Victor Stinner · 5 years ago
- 892f9e0 bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions (GH-16457) by idomic · 5 years ago
- 7ddcd0c bpo-38529: Fix asyncio stream warning (GH-17474) by Andrew Svetlov · 5 years ago
- dec3672 bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491) by Batuhan Taşkaya · 5 years ago
- e76ee1a bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477) by Victor Stinner · 5 years ago
- 99eb70a bpo-38951: Use threading.main_thread() check in asyncio (GH-17433) by Hill Ma · 5 years ago
- 293dd23 Remove binding of captured exceptions when not used to reduce the chances of creating cycles (GH-17246) by Pablo Galindo · 5 years ago
- 3f8cebd bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161) by Kyle Stanley · 5 years ago
- 3ccdd9b closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069) by Benjamin Peterson · 5 years ago
- dad6be5 bpo-38785: Prevent asyncio from crashing (GH-17144) by Andrew Svetlov · 5 years ago
- 1b53a24 bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901) by Victor Stinner · 5 years ago
- b23a842 bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463) by idomic · 5 years ago
- e407013 Fix and improve `asyncio.run()` docs (GH-16403) by Kyle Stanley · 5 years ago
- 6758e6e bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482) by Yury Selivanov · 5 years ago
- 58498bc bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe (GH-16472) by Andrew Svetlov · 5 years ago
- edad4d8 bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) by Yury Selivanov · 5 years ago
- 17deb16 bpo-38260: Add Docs on asyncio.run (GH-16337) by Emmanuel Arias · 5 years ago
- 9fdc64c bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() (GH-15735) by Kyle Stanley · 5 years ago
- 9eb35ab bpo-38148: Add slots to asyncio transports (GH-16077) by Andrew Svetlov · 5 years ago
- d31b315 bpo-36889: Document Stream class and add docstrings (GH-14488) by Xtreak · 5 years ago
- a488879 bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033) by Andrew Svetlov · 5 years ago
- 7264e92 bpo-36373: Fix deprecation warnings (GH-15889) by Andrew Svetlov · 5 years ago
- 12c122a bpo-38066: Hide internal Stream methods (GH-15762) by Andrew Svetlov · 5 years ago
- 9008be3 bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queue] (GH-13950) by Emmanuel Arias · 5 years ago
- 537877d bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [locks] (GH-13920) by Emmanuel Arias · 5 years ago
- 39d87b5 Fix typos mostly in comments, docs and test names (GH-15209) by Min ho Kim · 5 years ago
- 1c06009 bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread (#15492) by Andrew Svetlov · 5 years ago
- 662db12 bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952) by Serhiy Storchaka · 5 years ago
- c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 5 years ago
- 96e12d5 Fix typos in docs, comments and test assert messages (#14872) by Min ho Kim · 5 years ago
- 0d671c0 bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (GH-14344) by Andrew Svetlov · 5 years ago
- 97d15b1 Replace deprecation warning with RuntimeError (GH-14397) by Andrew Svetlov · 5 years ago
- 0237265 Use threadpool for reading from file in sendfile fallback mode (#14076) by Andrew Svetlov · 5 years ago
- ef21523 bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback mode. (GH-14075) by Andrew Svetlov · 5 years ago
- 65aa64f bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971) by Andrew Svetlov · 5 years ago
- 9aa7856 bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-13834) by Zackery Spytz · 5 years ago
- 6d64a8f bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [streams] (GH-13671) by Emmanuel Arias · 5 years ago
- 7f9a2ae Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)" (#13802) by Łukasz Langa · 5 years ago
- 9535aff Revert "bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)" (GH-13793) by Andrew Svetlov · 5 years ago
- 0f0a30f bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786) by Victor Stinner · 5 years ago
- 0d70227 Fix typos in docs and docstrings (GH-13745) by Xtreak · 5 years ago
- 13ed079 bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630) by Andrew Svetlov · 5 years ago
- 98ef920 bpo-36999: Add asyncio.Task.get_coro() (GH-13680) by Alex Grönholm · 5 years ago
- 744c08a bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628) by 依云 · 5 years ago
- bafd4b5 bpo-29883: Asyncio proactor udp (GH-13440) by Andrew Svetlov · 5 years ago
- f0d4c64 bpo-36686: Improve the documentation of the std* params in loop.subprocess_exec (GH-13586) by sbstp · 5 years ago
- 23b4b69 bpo-36889: Merge asyncio streams (GH-13251) by Andrew Svetlov · 5 years ago
- 8cd5165 bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530) by Yury Selivanov · 5 years ago
- 1f39c28 bpo-37035: Don't log OSError (GH-13548) by Andrew Svetlov · 5 years ago
- 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 5 years ago
- 16cefb0 bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472) by Yury Selivanov · 5 years ago
- d0ebf13 bpo-36932: use proper deprecation-removed directive (GH-13349) by Matthias Bussonnier · 5 years ago
- 9932fd9 bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-11553) by Niklas Fiekas · 5 years ago
- ac8eb8f bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271) by Erwan Le Pape · 5 years ago
- 68b34a7 bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) by Andrew Svetlov · 5 years ago
- 6e78900 bpo-35589: Prevent buffer copy in sock_sendall() (GH-11418) by Andrew Svetlov · 5 years ago
- 54b74fe bpo-36801: Temporarily fix regression in writer.drain() (#13330) by Andrew Svetlov · 5 years ago
- f12ba7c bpo-36916: asyncio: Swallow unhandled write() exception (GH-13313) by Andrew Svetlov · 5 years ago
- a076e4f bpo-36802: Drop awrite()/aclose(), support await write() and await close() instead (#13099) by Andrew Svetlov · 6 years ago