Wait until there are at least *num* clients waiting in the queue.
(p, num=1)
| 700 | |
| 701 | |
| 702 | def ensure_waiting(p, num=1): |
| 703 | """ |
| 704 | Wait until there are at least *num* clients waiting in the queue. |
| 705 | """ |
| 706 | while len(p._waiting) < num: |
| 707 | sleep(0) |
no outgoing calls
no test coverage detected