()
| 314 | |
| 315 | |
| 316 | def background_output(): |
| 317 | put_text("Background output") |
| 318 | set_scope('background') |
| 319 | |
| 320 | def background(): |
| 321 | for i in range(20): |
| 322 | put_text('%s ' % i, inline=True, scope='background') |
| 323 | |
| 324 | t = threading.Thread(target=background) |
| 325 | register_thread(t) |
| 326 | t.start() |
| 327 | |
| 328 | |
| 329 | async def coro_background_output(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…