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
It appears that isAlive still exists at least in Python 3.5, though it isn't documented:
tabbott@zaset:~/zulip$ ipython3
Python 3.5.2 (default, Nov 23 2017, 16:37:01)
Type "copyright", "credits" or "license" for more information.
IPython 2.4.1 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: from threading import *
In [2]: x = Thread()
In [3]: x.isAlive()
Out[3]: False
Not submitting a PR since I haven't had a chance to investigate whether other Python 3.x versions are different.
The text was updated successfully, but these errors were encountered:
stdlib/2and3/threading.pyi
definesclass Thread
like this:It appears that isAlive still exists at least in Python 3.5, though it isn't documented:
Not submitting a PR since I haven't had a chance to investigate whether other Python 3.x versions are different.
The text was updated successfully, but these errors were encountered: