()
| 1687 | irefs_before = sys.getrefcount(iterable) |
| 1688 | |
| 1689 | async def main(): |
| 1690 | nonlocal I |
| 1691 | |
| 1692 | async with manager: |
| 1693 | async for i in iterable: |
| 1694 | I += 1 |
| 1695 | I += 1000 |
| 1696 | |
| 1697 | with warnings.catch_warnings(): |
| 1698 | warnings.simplefilter("error") |
no test coverage detected