[issue15017] threading.Lock documentation conflict

2012-06-06 Thread R. David Murray
R. David Murray added the comment: There's already an issue for this (issue 14502), which is closed. If the docs are still wrong you should probably reopen that one, since it has discussion of the issues involved. (Note, however, that ThreadError is RuntimeError, so technically the docs ar

[issue15017] threading.Lock documentation conflict

2012-06-06 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15017] threading.Lock documentation conflict

2012-06-06 Thread Petri Lehtinen
New submission from Petri Lehtinen : In the description of section 16.2.2. Lock objects: If an attempt is made to release an unlocked lock, a RuntimeError will be raised. In the description of Lock.release(): When invoked on an unlocked lock, a ThreadError is raised. Apparently, T