GH-88342: clarify that `asyncio.as_completed` accepts generators yielding tasks (#103626)

This commit is contained in:
Kumar Aditya 2023-04-19 15:51:53 +05:30 committed by GitHub
parent d1e4917e06
commit da2273fec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -829,6 +829,9 @@ Waiting Primitives
Deprecation warning is emitted if not all awaitable objects in the *aws* Deprecation warning is emitted if not all awaitable objects in the *aws*
iterable are Future-like objects and there is no running event loop. iterable are Future-like objects and there is no running event loop.
.. versionchanged:: 3.12
Added support for generators yielding tasks.
Running in Threads Running in Threads
================== ==================

View File

@ -250,7 +250,8 @@ asyncio
:mod:`asyncio` does not support legacy generator-based coroutines. :mod:`asyncio` does not support legacy generator-based coroutines.
(Contributed by Kumar Aditya in :gh:`102748`.) (Contributed by Kumar Aditya in :gh:`102748`.)
* :func:`asyncio.wait` now accepts generators yielding tasks. * :func:`asyncio.wait` and :func:`asyncio.as_completed` now accepts generators
yielding tasks.
(Contributed by Kumar Aditya in :gh:`78530`.) (Contributed by Kumar Aditya in :gh:`78530`.)
csv csv