()
| 151 | stack_for_deep = None |
| 152 | |
| 153 | async def deep(): |
| 154 | await asyncio.sleep(0) |
| 155 | nonlocal stack_for_deep |
| 156 | stack_for_deep = capture_test_stack() |
| 157 | |
| 158 | async def c1(): |
| 159 | await asyncio.sleep(0) |
nothing calls this directly
no test coverage detected