aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_asyncio/test_futures.py
Commit message (Expand)AuthorAge
* 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-101326: Fix regression when passing None to FutureIter.throw (#101327)Shantanu2023-01-25
* 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-97592: Fix crash in C remove_done_callback due to evil code (#97660)Guido van Rossum2022-09-30
* gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...Ofey Chan2022-09-30
* Simplify testing the warning filename (GH-91868)Serhiy Storchaka2022-04-24
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-23
* bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)Kumar Aditya2022-01-22
* bpo-46358: modernize `test_asyncio` (GH-30562)Nikita Sobolev2022-01-13
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-20
* bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)Serhiy Storchaka2021-08-26
* bpo-39529: Deprecate creating new event loop in asyncio.get_event_loop() (GH-...Serhiy Storchaka2021-04-25
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-15
* bpo-38785: Prevent asyncio from crashing (GH-17144)Andrew Svetlov2019-11-13
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Zackery Spytz2018-12-17
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-01
* 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-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)Yury Selivanov2017-12-17
* bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)Yury Selivanov2017-12-11
* bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076)Serhiy Storchaka2017-09-03
* bpo-31250, test_asyncio: fix dangling threads (#3252)Victor Stinner2017-09-01
* bpo-31061: fix crash in asyncio speedup module (GH-2966)Alexander Mohr2017-08-02
* bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_callback()...Yury Selivanov2017-07-05
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050)Yury Selivanov2017-06-11
* bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/...Yury Selivanov2017-03-02
* correctly emulate error semantics of gen.throw in FutureIter_throwBenjamin Peterson2016-11-14
* Merge 3.5 (issue #28634)Yury Selivanov2016-11-07
|\
| * Issue #28634: Fix asyncio.isfuture() to support mocksYury Selivanov2016-11-07
* | Merge 3.5 (issue #28613)Yury Selivanov2016-11-04
|\|
| * Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-04
* | asyncio: Increase asyncio.Future test coverage; test both implementations.Yury Selivanov2016-10-23
* | Issue #28492: Fix how StopIteration is raised in _asyncio.FutureYury Selivanov2016-10-20
|/
* Merge asyncio upstream.Guido van Rossum2016-09-09
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-16
* asyncio/tests: Ensure a gc_collect for __del__ testingYury Selivanov2016-05-13
* asyncio: Prevent StopIteration from being thrown into a FutureYury Selivanov2016-03-02
* asyncio: Cleanup Future APIYury Selivanov2015-11-17
* Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-03
* asyncio: sync with TulipVictor Stinner2015-01-15
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-09
* asyncio: sync with TulipVictor Stinner2014-12-26
* asyncio: sync with TulipVictor Stinner2014-12-18
* asyncio: Fix formatting of the "Future exception was never retrieved" inVictor Stinner2014-11-20
* asyncio: sync with TulipVictor Stinner2014-07-29