fix threading.Event.isSet() docstring (#96297)

fixes gh-96296
This commit is contained in:
Daniel Giger 2022-08-27 01:06:26 -04:00 committed by GitHub
parent 35e4da25d4
commit e534440510
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -589,7 +589,7 @@ class Event:
def isSet(self): def isSet(self):
"""Return true if and only if the internal flag is true. """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 import warnings