You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Threading.thread.isAlive was deperecated and removed in favor of is_alive in Python 3.9. Following places continue to use the deprecated alias causing error.
81: return self.thread.isAlive()
152: if self.thread.isAlive() or (not outcomereported):
160: while self.thread.isAlive() and time.time()-starttime < timeout:
169: if self.thread.isAlive():
Expected behavior
No error should be produced and is_alive should be used.
Affected version(s)
Python version(s): 3.9
PySys version(s): master
Operating System(s): Windows vX, Red Hat Linux vX, ...
The text was updated successfully, but these errors were encountered:
Describe the bug
Threading.thread.isAlive was deperecated and removed in favor of is_alive in Python 3.9. Following places continue to use the deprecated alias causing error.
Expected behavior
No error should be produced and
is_alive
should be used.Affected version(s)
The text was updated successfully, but these errors were encountered: