]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-137128: Remove outdated todo about coro_fns in asyncio (#137385)
authoralexey semenyuk <alexsemenyuk88@gmail.com>
Mon, 4 Aug 2025 16:44:29 +0000 (21:44 +0500)
committerGitHub <noreply@github.com>
Mon, 4 Aug 2025 16:44:29 +0000 (16:44 +0000)
Lib/asyncio/staggered.py

index 2ad65d8648e6c52ed6cbb45460cc9db57dffdd3e..845aed4c6a3b352f62810fe32e6f422e7693af9e 100644 (file)
@@ -62,7 +62,6 @@ async def staggered_race(coro_fns, delay, *, loop=None):
           coroutine's entry is ``None``.
 
     """
-    # TODO: when we have aiter() and anext(), allow async iterables in coro_fns.
     loop = loop or events.get_running_loop()
     parent_task = tasks.current_task(loop)
     enum_coro_fns = enumerate(coro_fns)