[issue15126] Theading isAlive() missing version note

2012-06-21 Thread Georg Brandl
Georg Brandl added the comment: Since the news aliases are all over the module, the version change notice is at the top of the page: """ Note Starting with Python 2.6, this module provides PEP 8 compliant aliases and properties to replace the camelCase names that were inspired by Java’s thr

[issue15126] Theading isAlive() missing version note

2012-06-21 Thread Damian
Damian added the comment: I'm gonna hazard the guess that other methods like currentThread() and current_thread() are the same... http://docs.python.org/library/threading.html#threading.current_thread -- ___ Python tracker

[issue15126] Theading isAlive() missing version note

2012-06-21 Thread Damian
New submission from Damian : The threading module's isAlive() method had an is_alive() alias first created in python 2.6. The documentation page doesn't mention this... http://docs.python.org/library/threading.html#threading.Thread.is_alive However, this is noted for other methods like the Even