Closed c00kiemon5ter closed 1 year ago
threading.Thread.isAlive is a method carried over from Python 2. In Python 3 it is deprecated and instead threading.Thread.is_alive should be used.
threading.Thread.isAlive
threading.Thread.is_alive
Since Python 3.9 the isAlive method is removed.
isAlive
threading.Thread.isAlive
is a method carried over from Python 2. In Python 3 it is deprecated and insteadthreading.Thread.is_alive
should be used.Since Python 3.9 the
isAlive
method is removed.