()
| 457 | cancel_scope = anyio.CancelScope() |
| 458 | |
| 459 | async def run_client_until_cancelled() -> None: |
| 460 | with cancel_scope: |
| 461 | async with stdio_client(FAKE_PARAMS): |
| 462 | entered.set() |
| 463 | await anyio.sleep_forever() |
| 464 | |
| 465 | with anyio.fail_after(5): |
| 466 | async with anyio.create_task_group() as tg: |
nothing calls this directly
no test coverage detected