()
| 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) |
no test coverage detected
searching dependent graphs…