aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/futures.py
Commit message (Expand)AuthorAge
* GH-91048: Add utils for capturing async call stack for asyncio programs and e...Yury Selivanov2025-01-22
* Fix typo in `Lib/asyncio/futures.py` (#128819)Wang Ran (汪然)2025-01-15
* gh-124958: Revert "gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _P...Thomas Grainger2024-10-14
* gh-125472: Revert "gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (...Kirill Podoprigora2024-10-14
* gh-124958: fix asyncio.TaskGroup and _PyFuture refcycles (#124959)Thomas Grainger2024-10-14
* fix outdated comments in asyncio (#121783)Kumar Aditya2024-07-15
* gh-117459: Keep the traceback in _convert_future_exc (#117460)rsp4jack2024-04-03
* gh-112182: Replace StopIteration with RuntimeError for future (#113220)Jamie Phan2024-01-09
* GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.C...Kristján Valur Jónsson2024-01-08
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-06
* GH-90985: Revert "Deprecate passing a message into cancel()" (#97999)Guido van Rossum2022-10-06
* GH-96827: Don't touch closed loops from executor threads (#96837)Guido van Rossum2022-09-30
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Kumar Aditya2022-07-11
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-23
* bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)Andrew Svetlov2022-03-17
* bpo-45390: Propagate CancelledError's message from cancelled task to its awai...Andrew Svetlov2022-02-21
* bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)Kumar Aditya2022-01-22
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-25
* bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396)Wansoo Kim2020-11-28
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-17
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-15
* bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)Batuhan Taşkaya2019-12-07
* bpo-38785: Prevent asyncio from crashing (GH-17144)Andrew Svetlov2019-11-13
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-11
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Yury Selivanov2018-05-28
* bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov2018-01-24
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-22
* bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov2017-12-25
* bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov2017-12-25
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-23
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-15
* bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779)Andrew Svetlov2017-12-11
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-10
* asyncio: Remove asyncio/compat.py (#4606)Victor Stinner2017-11-28
* asyncio: Remove unused Future._tb_logger attribute (#4596)Victor Stinner2017-11-28
* bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)Antoine Pitrou2017-11-07
* bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (#4319)Antoine Pitrou2017-11-07
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)Yury Selivanov2017-06-11
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-25
* Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-28
* asyncio: Increase asyncio.Future test coverage; test both implementations.Yury Selivanov2016-10-23
* Issue #28448: Fix C implemented asyncio.Future didn't work on WindowsINADA Naoki2016-10-21
* Issue #28452: Remove _asyncio._init_module functionINADA Naoki2016-10-18
* Issue #28428: Rename _futures module to _asyncio.INADA Naoki2016-10-15
* Issue #26801: Added C implementation of asyncio.Future.INADA Naoki2016-10-09
* Merge asyncio upstream.Guido van Rossum2016-09-09
* Rename Future._blocking to _asyncio_future_blocking.Guido van Rossum2016-09-09
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-16
* asyncio: Prevent StopIteration from being thrown into a FutureYury Selivanov2016-03-02
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-10