- 89aa7f0 bpo-34790: Implement deprecation of passing coroutines to asyncio.wait() (GH-16977) by Kyle Stanley · 5 years ago
- dec3672 bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491) by Batuhan Taşkaya · 6 years ago
- edad4d8 bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) by Yury Selivanov · 6 years ago
- a488879 bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033) by Andrew Svetlov · 6 years ago
- 65aa64f bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971) by Andrew Svetlov · 6 years ago
- 98ef920 bpo-36999: Add asyncio.Task.get_coro() (GH-13680) by Alex Grönholm · 6 years ago
- 431b540 bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) by Yury Selivanov · 6 years ago
- d0ebf13 bpo-36932: use proper deprecation-removed directive (GH-13349) by Matthias Bussonnier · 6 years ago
- 68b34a7 bpo-36921: Deprecate @coroutine for sake of async def (GH-13346) by Andrew Svetlov · 6 years ago
- b35acc5 bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-10340) by Romain Picard · 6 years ago
- 4737b92 bpo-24638: Improve the error message in asyncio.ensure_future() (#12848) by Zackery Spytz · 6 years ago
- c1964e9 bpo-36613: call remove_done_callback if exception (GH-12800) by gescheit · 6 years ago
- c5c6cda asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494) by Inada Naoki · 6 years ago
- 97cf082 bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-9837) by Andrew Svetlov · 7 years ago
- fad6af2 asyncio/docs: Replace Python 4.0 -> 3.10 (GH-9579) by Yury Selivanov · 7 years ago
- 558c49b bpo-34728: Remove deprecate *loop* argument in asyncio.sleep (GH-9415) by João Júnior · 7 years ago
- 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 7 years ago
- cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 7 years ago
- e2b340a bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216) by Elvis Pranskevichus · 7 years ago
- 863b674 bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (GH-7209) by Yury Selivanov · 7 years ago
- 416c1eb bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174) by Yury Selivanov · 7 years ago
- e549c4b bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-6836) by jimmylai · 7 years ago
- 6655354 bpo-33584: Fix several minor bugs in asyncio. (GH-7003) by Serhiy Storchaka · 7 years ago
- 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 7 years ago
- f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
- 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 8 years ago
- ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 8 years ago
- 36c2c04 bpo-32355: Optimize asyncio.gather() (#4913) by Yury Selivanov · 8 years ago
- 5382c05 bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908) by Andrew Svetlov · 8 years ago
- 44d1a59 bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799) by Andrew Svetlov · 8 years ago
- f74ef45 bpo-32311: Implement asyncio.create_task() shortcut (#4848) by Andrew Svetlov · 8 years ago
- 9edad3c bpo-32272: Remove asyncio.async() function. (#4784) by Yury Selivanov · 8 years ago
- 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 8 years ago
- 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 8 years ago
- 3f438a9 asyncio: Remove asyncio/compat.py (#4606) by Victor Stinner · 8 years ago
- 4d07189 bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703) by Victor K · 8 years ago
- 7ce1c6f bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) by Yury Selivanov · 8 years ago
- 991adca bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097) by INADA Naoki · 8 years ago
- 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 8 years ago
- ae5b326 bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH-1170) by Charles Renwick · 8 years ago
- 6138432 Issue #29314: Merge with 3.5 by Mariatta Wijaya · 8 years ago
- 4e7ff8b Issue #29314: Set the stacklevel to two in asyncio.async() Deprecation Warning by Mariatta Wijaya · 8 years ago
- a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 9 years ago
- 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 9 years ago
- 4145c83 Issue #27972: Prohibit Tasks to await on themselves. by Yury Selivanov · 9 years ago
- e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 9 years ago
- 4357cf6 Another asyncio sync. by Yury Selivanov · 9 years ago
- 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 9 years ago
- 1140a03 Rename Future._blocking to _asyncio_future_blocking. by Guido van Rossum · 9 years ago
- c1cf296 asyncio: Remove asyncio.timeout() context manager. by Yury Selivanov · 9 years ago
- 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 9 years ago
- 2ba8ece asyncio: allow None as wait timeout by Victor Stinner · 9 years ago
- 9d976fa Sync with asyncio by Andrew Svetlov · 9 years ago
- c07b16b Sync with asyncio repo by Andrew Svetlov · 9 years ago
- 0ac3a0c asyncio: Make Tasks check if Futures are attached to the same event loop by Yury Selivanov · 10 years ago
- d59bba8 asyncio: Drop "value" parameter from Task._step method. by Yury Selivanov · 10 years ago
- 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 10 years ago
- 0013cce asyncio: Sync with github by Yury Selivanov · 10 years ago
- a4afc48 asyncio: Optimize Task._wakeup by Yury Selivanov · 10 years ago
- ade0412 asyncio: Optimize asyncio.sleep(0) by Yury Selivanov · 10 years ago
- 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 10 years ago
- 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 10 years ago
- 620279b asyncio: ensure_future() now understands awaitables by Yury Selivanov · 10 years ago
- 2339833 Issue #24867: Fix Task.get_stack() for 'async def' coroutines by Yury Selivanov · 10 years ago
- 4c0a09a Revert da29a94367b2 by Yury Selivanov · 10 years ago
- 6b3f29c asyncio: Fix code style by Yury Selivanov · 10 years ago
- eaf16ab asyncio: sync with github by Victor Stinner · 10 years ago
- 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 10 years ago
- 1ad08a5 asyncio: Drop some useless code from tasks.py. by Yury Selivanov · 10 years ago
- 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 10 years ago
- 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 10 years ago
- 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
- 922bc2c Closes #23219: cancelling asyncio.wait_for() now cancels the task by Victor Stinner · 10 years ago
- 3531d90 asyncio: sync with Tulip by Victor Stinner · 10 years ago
- 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
- fe22e09 asyncio: Initialize more Future and Task attributes in the class definition to by Victor Stinner · 11 years ago
- d87de83 Closes #22475: asyncio doc, fix Task.get_stack() doc by Victor Stinner · 11 years ago
- 8e069d5 Apply asyncio Task English fixes to docstrings as well. by R David Murray · 11 years ago
- 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 11 years ago
- 313a980 asyncio: sync with Tulip by Victor Stinner · 11 years ago
- e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 11 years ago
- f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 11 years ago
- 770e48d asyncio: sync with Tulip by Victor Stinner · 11 years ago
- 737c34f asyncio: sync with Tulip by Victor Stinner · 11 years ago
- c39ba7d asyncio: sync with Tulip by Victor Stinner · 11 years ago
- 896a25a asyncio: sync with Tulip by Victor Stinner · 11 years ago
- a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 11 years ago
- 2dba23a asyncio: sync with Tulip by Victor Stinner · 11 years ago
- 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 11 years ago
- f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 11 years ago
- 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 11 years ago
- bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 11 years ago
- 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 11 years ago
- df29c4a asyncio: repr(Task) now also contains the line number even if the coroutine is by Victor Stinner · 11 years ago
- a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 11 years ago
- 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 11 years ago
- bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 11 years ago
- 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 11 years ago
- db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 11 years ago
- 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 11 years ago