From e53444051018af3351cc26c4bf1ed2d380292016 Mon Sep 17 00:00:00 2001 From: Daniel Giger Date: Sat, 27 Aug 2022 01:06:26 -0400 Subject: fix threading.Event.isSet() docstring (#96297) fixes gh-96296 --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index f28597c..7237a14 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -589,7 +589,7 @@ class Event: def isSet(self): """Return true if and only if the internal flag is true. - This method is deprecated, use notify_all() instead. + This method is deprecated, use is_set() instead. """ import warnings -- cgit v0.12