()
| 206 | stack_for_inner = None |
| 207 | |
| 208 | async def inner(): |
| 209 | await asyncio.sleep(0) |
| 210 | nonlocal stack_for_inner |
| 211 | stack_for_inner = capture_test_stack() |
| 212 | |
| 213 | async def c1(): |
| 214 | async with asyncio.timeout(1): |
nothing calls this directly
no test coverage detected