index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_asyncio
/
test_tasks.py
Commit message (
Expand
)
Author
Age
*
gh-130322: drop deprecation of `asyncio.set_event_loop` (#132349)
Kumar Aditya
2025-04-12
*
fix various warnings in `test_asyncio.test_tasks` (#131109)
Kumar Aditya
2025-03-11
*
improve `test_tasks` to use correct idiom for starting task in asyncio (#130257)
Kumar Aditya
2025-02-18
*
gh-129289: fix crash when task finalizer is not called in asyncio (#129840)
Kumar Aditya
2025-02-10
*
gh-129874: improve `test_tasks` in asyncio to use correct internal functions ...
Kumar Aditya
2025-02-09
*
improve `test_log_destroyed_pending_task` in asyncio (#129821)
Kumar Aditya
2025-02-07
*
fix tests in `test_asyncio.test_tasks` to use correct `all_tasks` (#129815)
Kumar Aditya
2025-02-07
*
gh-71339: Use new assertion methods in `test_asyncio` (#129051)
Serhiy Storchaka
2025-01-20
*
gh-127949: deprecate `asyncio.set_event_loop` (#128218)
Kumar Aditya
2024-12-24
*
gh-127949: fix resource warnings in `test_tasks.py` (#128172)
Thomas Grainger
2024-12-22
*
gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)
Kumar Aditya
2024-12-18
*
gh-126083: Fix a reference leak in `asyncio.Task` when reinitializing with ne...
Nico-Posada
2024-10-31
*
gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)
Wulian
2024-08-11
*
GH-107803: double linked list implementation for asyncio tasks (GH-107804)
Kumar Aditya
2024-06-22
*
gh-120417: Add #noqa: F401 to tests (#120627)
Victor Stinner
2024-06-18
*
gh-116720: Fix corner cases of taskgroups (#117407)
Guido van Rossum
2024-04-09
*
gh-77714: Provide an async iterator version of as_completed (GH-22491)
Justin Turner Arthur
2024-04-01
*
gh-105331: Change `asyncio.sleep` to raise ``ValueError` for nan (#105641)
Jay
2023-06-12
*
gh-103793: Defer formatting task name (#103767)
Itamar Ostricher
2023-04-29
*
gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)
Irit Katriel
2023-04-06
*
GH-78530: add support for generators in `asyncio.wait` (#102761)
Kumar Aditya
2023-03-17
*
GH-100112: avoid using iterable coroutines in asyncio internally (#100128)
Kumar Aditya
2023-03-16
*
gh-100344: Add C implementation for `asyncio.current_task` (#100345)
Itamar Ostricher
2022-12-22
*
GH-100113: remove remaining `yield from` usage from `asyncio` tests (#100114)
Kumar Aditya
2022-12-09
*
gh-93453: No longer create an event loop in get_event_loop() (#98440)
Serhiy Storchaka
2022-12-06
*
gh-99357: Close the event loop when it is no longer used in test_uncancel_str...
Xiao Chen
2022-11-12
*
GH-90985: Revert "Deprecate passing a message into cancel()" (#97999)
Guido van Rossum
2022-10-06
*
GH-96704: Add {Task,Handle}.get_context(), use it in call_exception_handler()...
Guido van Rossum
2022-10-04
*
gh-90908: Document asyncio.Task.cancelling() and asyncio.Task.uncancel() (#95...
Łukasz Langa
2022-10-01
*
gh-91323: Revert "Allow overriding a future compliance check in asyncio.Task ...
Łukasz Langa
2022-08-04
*
gh-84753: Make inspect.iscoroutinefunction() work with AsyncMock (#94050)
Mehdi ABAAKOUK
2022-06-30
*
gh-84623: Remove unused imports in tests (#93772)
Victor Stinner
2022-06-13
*
Simplify testing the warning filename (GH-91868)
Serhiy Storchaka
2022-04-24
*
bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)
Andrew Svetlov
2022-04-01
*
bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...
Andrew Svetlov
2022-03-23
*
bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)
Andrew Svetlov
2022-03-17
*
bpo-47038: Rewrite missed asyncio.wait_for test to use IsolatedAnsyncioTestCa...
Andrew Svetlov
2022-03-17
*
bpo-47038: Rewrite asyncio.wait_for test to use IsolatedAsyncioTestCase (GH-3...
Andrew Svetlov
2022-03-16
*
bpo-46994: Accept explicit contextvars.Context in asyncio create_task() API (...
Andrew Svetlov
2022-03-14
*
bpo-46995: Deprecate missing asyncio.Task.set_name() for third-party task imp...
Andrew Svetlov
2022-03-13
*
bpo-46771: Remove two controversial lines from Task.cancel() (GH-31623)
Guido van Rossum
2022-02-28
*
bpo-45390: Propagate CancelledError's message from cancelled task to its awai...
Andrew Svetlov
2022-02-21
*
bpo-46672: fix `NameError` in `asyncio.gather` if type check fails (GH-31187)
Nikita Sobolev
2022-02-20
*
bpo-46752: Add TaskGroup; add Task..cancelled(),.uncancel() (GH-31270)
Guido van Rossum
2022-02-15
*
bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)
Kumar Aditya
2022-01-22
*
bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)
Serhiy Storchaka
2021-12-20
*
bpo-37658: Actually return result in race condition (GH-29202)
Sam Bull
2021-11-29
*
Fix typos in the Lib directory (GH-28775)
Christian Clauss
2021-10-06
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
*
bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)
Serhiy Storchaka
2021-08-26
[next]