summaryrefslogtreecommitdiff
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)Miss Islington (bot)2020-01-121-1/+8
* [3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894)Andrew Svetlov2020-01-071-3/+3
* [3.8] bpo-39191: Don't spawn a task before failing (GH-17796) (GH-17820)Andrew Svetlov2020-01-041-3/+7
* Fix import path for asyncio.TimeoutError (GH-17691)Miss Islington (bot)2019-12-241-2/+2
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17...Miss Islington (bot)2019-12-091-7/+18
* bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)Miss Islington (bot)2019-12-091-10/+10
* [3.8] bpo-37404: Raising value error if an SSLSocket is passed to asyncio fun...Andrew Svetlov2019-12-071-0/+10
* bpo-38529: Fix asyncio stream warning (GH-17474)Miss Islington (bot)2019-12-071-18/+1
* bpo-38785: Prevent asyncio from crashing (GH-17144)Miss Islington (bot)2019-11-131-1/+4
* bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)Miss Skeleton (bot)2019-10-231-3/+3
* bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463)Miss Islington (bot)2019-10-031-2/+2
* Fix and improve `asyncio.run()` docs (GH-16403) (GH-16504)Miss Islington (bot)2019-09-301-5/+1
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482) (#16...Yury Selivanov2019-09-293-1242/+112
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Miss Islington (bot)2019-09-291-0/+11
* bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) (G...Miss Islington (bot)2019-09-251-1/+1
* bpo-38260: Add Docs on asyncio.run (GH-16337)Miss Islington (bot)2019-09-251-0/+4
* [3.8] bpo-38148: Add slots to asyncio transports (GH-16077) (GH-16093)Andrew Svetlov2019-09-131-0/+14
* bpo-36889: Document Stream class and add docstrings (GH-14488)Miss Islington (bot)2019-09-131-0/+21
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Miss Islington (bot)2019-09-122-2/+30
* [3.8] bpo-36373: Fix deprecation warnings (GH-15889) (GH-15901)Andrew Svetlov2019-09-112-2/+2
* bpo-38066: Hide internal Stream methods (GH-15762)Miss Islington (bot)2019-09-102-11/+48
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queu...Miss Islington (bot)2019-09-101-0/+4
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [lock...Miss Islington (bot)2019-09-101-12/+29
* Fix typos mostly in comments, docs and test names (GH-15209)Miss Islington (bot)2019-08-301-2/+2
* bpo-34679: Restore instantiation Windows IOCP event loop from non-main thread...Miss Islington (bot)2019-08-261-1/+4
* [3.8] Fix typos in docs, comments and test assert messages (GH-14872). (#14900)Kyle Stanley2019-07-211-1/+1
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Miss Islington (bot)2019-06-301-29/+244
* Replace deprecation warning with RuntimeError (GH-14397)Miss Islington (bot)2019-06-271-4/+2
* [3.8] Use threadpool for reading from file in sendfile fallback mode (GH-1407...Andrew Svetlov2019-06-151-1/+1
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Miss Islington (bot)2019-06-151-2/+2
* bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)Miss Islington (bot)2019-06-111-6/+32
* bpo-34767: Do not always create a collections.deque() in asyncio.Lock() (GH-1...Miss Islington (bot)2019-06-051-2/+7
* bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [str...Miss Islington (bot)2019-06-041-0/+16
* Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...Łukasz Langa2019-06-041-3/+1
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-031-212/+28
* bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)Victor Stinner2019-06-031-1/+3
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-031-1/+1
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-021-28/+212
* bpo-36999: Add asyncio.Task.get_coro() (GH-13680)Alex Grönholm2019-05-301-0/+3
* bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)依云2019-05-281-5/+0
* bpo-29883: Asyncio proactor udp (GH-13440)Andrew Svetlov2019-05-282-16/+199
* bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...sbstp2019-05-271-1/+18
* bpo-36889: Merge asyncio streams (GH-13251)Andrew Svetlov2019-05-274-155/+1156
* bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...Yury Selivanov2019-05-274-6/+215
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-275-11/+4
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-2712-53/+130
* bpo-37028: asyncio REPL; activated via 'python -m asyncio'. (GH-13472)Yury Selivanov2019-05-271-0/+125
* bpo-36932: use proper deprecation-removed directive (GH-13349)Matthias Bussonnier2019-05-201-8/+8
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Niklas Fiekas2019-05-201-6/+12
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Erwan Le Pape2019-05-171-3/+3