This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: threading.Thread.join() documentation: missing 'from version' for RuntimeError exceptions
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: eyal.gordon, georg.brandl
Priority: normal Keywords:

Created on 2009-03-09 10:31 by eyal.gordon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg83367 - (view) Author: Eyal Gordon (eyal.gordon) Date: 2009-03-09 10:31
In threading documentation:
http://www.python.org/doc/current/library/threading.html?highlight=threading#threading.Thread.join

It is not specified from which python version the join() call raises the
RuntimeError exception. In python version 2.4.3 join asserts on such
conditions.
msg83384 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-03-09 14:25
Thanks, fixed in r70273.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49708
2009-03-09 14:25:27georg.brandlsetstatus: open -> closed

messages: + msg83384
resolution: fixed
2009-03-09 10:31:10eyal.gordoncreate