From: alexey semenyuk Date: Mon, 4 Aug 2025 16:44:29 +0000 (+0500) Subject: gh-137128: Remove outdated todo about coro_fns in asyncio (#137385) X-Git-Tag: v3.15.0a1~783 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c5cebe1b5afa58fc0ee95153a4b1905229dce7dc;p=thirdparty%2FPython%2Fcpython.git gh-137128: Remove outdated todo about coro_fns in asyncio (#137385) --- diff --git a/Lib/asyncio/staggered.py b/Lib/asyncio/staggered.py index 2ad65d8648e6..845aed4c6a3b 100644 --- a/Lib/asyncio/staggered.py +++ b/Lib/asyncio/staggered.py @@ -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)