()
| 576 | |
| 577 | |
| 578 | async def coro_background_input(): |
| 579 | async def background(): |
| 580 | await asyncio.sleep(1) |
| 581 | res = await input('background') |
| 582 | put_markdown(f'`background: {repr(res)}`') |
| 583 | |
| 584 | run_async(background()) |
| 585 | |
| 586 | res = await input('front') |
| 587 | put_markdown(f'`front: {repr(res)}`') |
| 588 | |
| 589 | |
| 590 | async def flask_coro_background_input(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…