(s, m)
| 35 | SLEEP_UNIT = 0.1 |
| 36 | |
| 37 | async def a(s, m): |
| 38 | async with ContextManager() as b: |
| 39 | print(f"val = {b}") |
| 40 | await asyncio.sleep(s) |
| 41 | async for i in AIterWrap(range(0, 2)): |
| 42 | print(i) |
| 43 | ls.append(m) |
| 44 | await asyncio.sleep(SLEEP_UNIT) |
| 45 | |
| 46 | |
| 47 | async def run(): |