From 674fe2b59fd5409b44e03d34fb3790ec993e2702 Mon Sep 17 00:00:00 2001 From: Alvaro Caceres Date: Thu, 6 Oct 2016 16:14:08 -0500 Subject: [PATCH] Add threading.Condition.notifyAll (#587) Documented in py2, undocumented in py3 --- stdlib/2and3/threading.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/2and3/threading.pyi b/stdlib/2and3/threading.pyi index f81b708f4..2b81bbe8f 100644 --- a/stdlib/2and3/threading.pyi +++ b/stdlib/2and3/threading.pyi @@ -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: