()
| 13 | |
| 14 | @source_def() |
| 15 | def printer(): |
| 16 | (fut1, waker1) = create_future() |
| 17 | yield waker1 |
| 18 | (fut2, waker2) = create_future() |
| 19 | yield waker2 |
| 20 | |
| 21 | [r1, r2] = join([lambda: fut1.wait(), lambda: fut2.wait()]) |
| 22 | print('printer: ', r1, r2) |
| 23 |
nothing calls this directly
no test coverage detected