From c5cebe1b5afa58fc0ee95153a4b1905229dce7dc Mon Sep 17 00:00:00 2001 From: alexey semenyuk Date: Mon, 4 Aug 2025 21:44:29 +0500 Subject: [PATCH] gh-137128: Remove outdated todo about coro_fns in asyncio (#137385) --- Lib/asyncio/staggered.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/asyncio/staggered.py b/Lib/asyncio/staggered.py index 2ad65d8648e6c5..845aed4c6a3b35 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)