[issue37804] Remove Thread.isAlive in Python 3.9

STINNER Victor report at bugs.python.org
Fri Apr 2 04:47:34 EDT 2021


STINNER Victor <vstinner at python.org> added the comment:

> The threading documentation for 3.9 still claims "While they are not listed below, the camelCase names used for some methods and functions in this module in the Python 2.x series are still supported by this module." It would be better to mention when isAlive was removed.

Do you want to propose a PR for that?

I see still 4 camelCase methods in threading.Thread:

* 'getName' => Thread.name can be get
* 'setName' => Thread.name can be set
* 'isDaemon' => Thread.name can be get
* 'setDaemon' => Thread.daemon can be set

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue37804>
_______________________________________


More information about the Python-bugs-list mailing list