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)
| 394 | pass |
| 395 | |
| 396 | def notify_all(self): |
| 397 | """Wake up all threads waiting on this condition. |
| 398 | |
| 399 | If the calling thread has not acquired the lock when this method |
| 400 | is called, a RuntimeError is raised. |
| 401 | |
| 402 | """ |
| 403 | self.notify(len(self._waiters)) |
| 404 | |
| 405 | def notifyAll(self): |
| 406 | """Wake up all threads waiting on this condition. |