summaryrefslogtreecommitdiff
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)Miss Islington (bot)2021-10-201-1/+1
* [3.9] Fix typos in the Lib directory (GH-28775) (GH-28803)Christian Clauss2021-10-072-3/+3
* [3.9] bpo-45097: Remove incorrect deprecation warnings in asyncio. (GH-28153)Serhiy Storchaka2021-09-045-12/+17
* [3.9] bpo-44815: Always show deprecation in asyncio.gather/sleep() (GH-27569)Sam Bull2021-08-181-8/+10
* Trivial typo in docstring (#27505)Miss Islington (bot)2021-07-311-1/+1
* bpo-41891: ensure asyncio.wait_for waits for task completion (GH-22461) (#23840)Miss Islington (bot)2020-12-181-1/+4
* bpo-38323: Add guard clauses in MultiLoopChildWatcher. (GH-22756)Miss Islington (bot)2020-12-161-14/+18
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Miss Islington (bot)2020-11-281-1/+2
* bpo-42140: Improve asyncio.wait function (GH-22938)Miss Islington (bot)2020-11-101-2/+4
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Miss Islington (bot)2020-11-101-3/+22
* bpo-42230: Improve asyncio documentation regarding accepting sets vs iterable...Miss Skeleton (bot)2020-11-021-2/+2
* bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)Miss Islington (bot)2020-09-122-9/+20
* bpo-41696: Fix handling of debug mode in asyncio.run (GH-22069) (#22071)Miss Islington (bot)2020-09-031-2/+3
* bpo-39010: Fix errors logged on proactor loop restart (GH-22017) (#22034)Miss Islington (bot)2020-09-032-2/+14
* bpo-37658: Fix asyncio.wait_for() to respect waited task status (GH-21894) (G...Miss Islington (bot)2020-08-261-3/+6
* bpo-32751: Wait for task cancel in asyncio.wait_for() when timeout <= 0 (GH-2...Miss Islington (bot)2020-08-261-2/+7
* bpo-41572: Fix grammar in BaseTransport.close docstring (GH-21914) (#21929)Miss Islington (bot)2020-08-211-2/+2
* bpo-40782: Change asyncio.AbstractEventLoop.run_in_executor to be a method no...Miss Islington (bot)2020-08-171-1/+1
* bpo-41467: Fix asyncio recv_into() on Windows (GH-21720)Miss Islington (bot)2020-08-031-1/+1
* bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (GH-21...Miss Islington (bot)2020-07-231-7/+6
* bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15...Miss Islington (bot)2020-07-201-0/+7
* bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.Task.all...Miss Islington (bot)2020-07-011-28/+0
* Fix asyncio.to_thread() documented return type (GH-20547)Miss Islington (bot)2020-05-311-1/+1
* bpo-30064: Fix asyncio loop.sock_* race condition issue (GH-20369)Miss Islington (bot)2020-05-271-16/+25
* bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278)Miss Islington (bot)2020-05-201-2/+6
* s/wakup/wakeup (GH-20250)Miss Islington (bot)2020-05-201-1/+1
* bpo-32309: Implement asyncio.to_thread() (GH-20143)Miss Islington (bot)2020-05-192-0/+23
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-172-19/+33
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-153-19/+36
* bpo-40607: Reraise exception during task cancelation in asyncio.wait_for() (G...romasku2020-05-151-1/+9
* bpo-40443: Remove unused imports in the stdlib (GH-19803)Victor Stinner2020-04-302-2/+0
* Fix typo from Lib/asyncio/events.py (GH-19410)Galden2020-04-141-1/+1
* bpo-39764: Make Task.get_stack accept ag_frame (#18669)Lidi Zheng2020-03-021-3/+10
* bpo-39609: set the thread_name_prefix for the default asyncio executor (GH-18...Markus Mohrhard2020-02-271-1/+3
* bpo-34793: Drop old-style context managers in asyncio.locks (GH-17533)Andrew Svetlov2020-02-011-83/+0
* bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)Kyle Stanley2020-01-121-1/+8
* bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863)Andrew Svetlov2020-01-071-3/+3
* Fix #39191: Don't spawn a task before failing (#17796)Andrew Svetlov2020-01-041-3/+7
* bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-...Kyle Stanley2019-12-301-0/+6
* Fix import path for asyncio.TimeoutError (#17691)Andrew Svetlov2019-12-241-2/+2
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (#17311)Kyle Stanley2019-12-091-7/+18
* bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)Victor Stinner2019-12-091-10/+10
* bpo-37404: Raising value error if an SSLSocket is passed to asyncio function...idomic2019-12-071-0/+10
* bpo-38529: Fix asyncio stream warning (GH-17474)Andrew Svetlov2019-12-071-18/+1
* bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)Batuhan Taşkaya2019-12-073-0/+9
* bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477)Victor Stinner2019-12-061-2/+13
* bpo-38951: Use threading.main_thread() check in asyncio (GH-17433)Hill Ma2019-12-052-4/+3
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-192-3/+3
* bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)Kyle Stanley2019-11-141-1/+1
* closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)Benjamin Peterson2019-11-131-0/+67