handler for curio autoawait
(coroutine)
| 95 | |
| 96 | |
| 97 | def _curio_runner(coroutine): |
| 98 | """ |
| 99 | handler for curio autoawait |
| 100 | """ |
| 101 | import curio |
| 102 | |
| 103 | return curio.run(coroutine) |
| 104 | |
| 105 | |
| 106 | def _trio_runner(async_fn): |
nothing calls this directly
no test coverage detected
searching dependent graphs…