(task)
| 461 | assert threading.current_thread() is threading.main_thread() |
| 462 | |
| 463 | async def subtask(task): |
| 464 | await asyncio.sleep(0) |
| 465 | task.cancel() |
| 466 | interrupt_self() |
| 467 | |
| 468 | async def coro(): |
| 469 | asyncio.create_task(subtask(asyncio.current_task())) |
nothing calls this directly
no test coverage detected