mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Add threading.Condition.notifyAll (#587)
Documented in py2, undocumented in py3
This commit is contained in:
committed by
Matthias Kramm
parent
f90a6d1c0e
commit
674fe2b59f
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user