(t: asyncio.Task)
| 314 | in_flight: set[asyncio.Task] = set() |
| 315 | |
| 316 | def _release(t: asyncio.Task) -> None: |
| 317 | in_flight.discard(t) |
| 318 | |
| 319 | while time.monotonic() < stop_at: |
| 320 | now = time.monotonic() |
nothing calls this directly
no outgoing calls
no test coverage detected