(self)
| 580 | return self |
| 581 | |
| 582 | async def __anext__(self): |
| 583 | if not self._todo_left: |
| 584 | raise StopAsyncIteration |
| 585 | assert self._todo_left > 0 |
| 586 | self._todo_left -= 1 |
| 587 | return await self._wait_for_one() |
| 588 | |
| 589 | def __next__(self): |
| 590 | if not self._todo_left: |
nothing calls this directly
no test coverage detected