Add threading.Condition.notifyAll (#587)

Documented in py2, undocumented in py3
This commit is contained in:
Alvaro Caceres
2016-10-06 16:14:08 -05:00
committed by Matthias Kramm
parent f90a6d1c0e
commit 674fe2b59f

View File

@@ -119,6 +119,7 @@ class Condition:
timeout: Optional[float]) -> _T: ...
def notify(self, n: int = ...) -> None: ...
def notify_all(self) -> None: ...
def notifyAll(self) -> None: ...
class Semaphore: