(awaitables)
| 1452 | return values |
| 1453 | |
| 1454 | async def try_async_iterator(awaitables): |
| 1455 | values = [] |
| 1456 | async for f in asyncio.as_completed(awaitables): |
| 1457 | values.append(await f) |
| 1458 | return values |
| 1459 | |
| 1460 | for foo in try_iterator, try_async_iterator: |
| 1461 | with self.subTest(method=foo.__name__): |
nothing calls this directly
no test coverage detected