Add asyncio.staggered.__all__ (#7274)

This commit is contained in:
Alex Waygood
2022-02-19 02:37:18 +00:00
committed by GitHub
parent 6672e57e75
commit 1f2c21d9e9

View File

@@ -2,6 +2,8 @@ from typing import Any, Awaitable, Callable, Iterable
from . import events
__all__ = ("staggered_race",)
async def staggered_race(
coro_fns: Iterable[Callable[[], Awaitable[Any]]], delay: float | None, *, loop: events.AbstractEventLoop | None = ...
) -> tuple[Any, int | None, list[Exception | None]]: ...