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)
| 429 | pass |
| 430 | |
| 431 | def notify_all(self): |
| 432 | """Wake up all threads waiting on this condition. |
| 433 | |
| 434 | If the calling thread has not acquired the lock when this method |
| 435 | is called, a RuntimeError is raised. |
| 436 | |
| 437 | """ |
| 438 | self.notify(len(self._waiters)) |
| 439 | |
| 440 | def notifyAll(self): |
| 441 | """Wake up all threads waiting on this condition. |