summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/futures.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-231-0/+6
* bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)Andrew Svetlov2022-03-171-4/+1
* bpo-45390: Propagate CancelledError's message from cancelled task to its awai...Andrew Svetlov2022-02-211-0/+5
* bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)Kumar Aditya2022-01-221-2/+2
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-251-2/+2
* bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396)Wansoo Kim2020-11-281-1/+1
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-181-5/+21
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-151-3/+8
* bpo-38978: Implement __class_getitem__ for asyncio objects (GH-17491)Batuhan Taşkaya2019-12-071-0/+3
* bpo-38785: Prevent asyncio from crashing (GH-17144)Andrew Svetlov2019-11-131-1/+4
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-12/+21
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Yury Selivanov2018-05-281-0/+3
* bpo-32643: Drop support for a few private Task and Future APIs. (#5293)Yury Selivanov2018-01-241-4/+4
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-231-6/+11
* bpo-31721: Allow Future._log_traceback to only be set to False (#5009)Yury Selivanov2017-12-251-6/+16
* bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923)Yury Selivanov2017-12-251-3/+4
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-231-2/+18
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-151-1/+3
* bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779)Andrew Svetlov2017-12-111-2/+3
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-8/+10
* asyncio: Remove asyncio/compat.py (#4606)Victor Stinner2017-11-281-3/+1
* asyncio: Remove unused Future._tb_logger attribute (#4596)Victor Stinner2017-11-271-8/+1
* bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)Antoine Pitrou2017-11-071-1/+1
* bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (#4319)Antoine Pitrou2017-11-071-1/+3
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)Yury Selivanov2017-06-111-0/+1
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-251-106/+16
* Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-281-71/+18
* asyncio: Increase asyncio.Future test coverage; test both implementations.Yury Selivanov2016-10-241-2/+7
* Issue #28448: Fix C implemented asyncio.Future didn't work on WindowsINADA Naoki2016-10-211-4/+4
* Issue #28452: Remove _asyncio._init_module functionINADA Naoki2016-10-181-15/+8
* Issue #28428: Rename _futures module to _asyncio.INADA Naoki2016-10-151-3/+3
* Issue #26801: Added C implementation of asyncio.Future.INADA Naoki2016-10-091-37/+57
* Merge asyncio upstream.Guido van Rossum2016-09-091-6/+18
* Rename Future._blocking to _asyncio_future_blocking.Guido van Rossum2016-09-091-2/+10
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-161-1/+3
* asyncio: Prevent StopIteration from being thrown into a FutureYury Selivanov2016-03-021-0/+3
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
* asyncio: Cleanup Future APIYury Selivanov2015-11-171-30/+30
* Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-031-16/+58
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-251-6/+4
* asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-121-0/+4
* Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho...Guido van Rossum2015-05-031-1/+1
* Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transportVictor Stinner2015-01-291-3/+3
* Issue #23209: Break some reference cycles in asyncio. Patch written by MartinVictor Stinner2015-01-091-1/+1
* asyncio: sync with TulipVictor Stinner2015-01-091-2/+0
* asyncio: Initialize more Future and Task attributes in the class definition toVictor Stinner2014-12-041-2/+1
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
* asyncio: Fix formatting of the "Future exception was never retrieved" inVictor Stinner2014-11-201-3/+4
* asyncio: sync with TulipVictor Stinner2014-07-291-10/+16
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-051-0/+6