Wake up all threads waiting on this condition. If the calling thread has not acquired the lock when this method is called, a RuntimeError is raised.
(self)
| 436 | pass |
| 437 | |
| 438 | def notify_all(self): |
| 439 | """Wake up all threads waiting on this condition. |
| 440 | |
| 441 | If the calling thread has not acquired the lock when this method |
| 442 | is called, a RuntimeError is raised. |
| 443 | |
| 444 | """ |
| 445 | self.notify(len(self._waiters)) |
| 446 | |
| 447 | def notifyAll(self): |
| 448 | """Wake up all threads waiting on this condition. |
no test coverage detected