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: typo (English) in threading.py
Type: Stage:
Components: Library (Lib) Versions: Python 3.0, Python 2.4, Python 3.1, Python 3.2, Python 2.7, Python 2.6, Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Yinon, georg.brandl
Priority: normal Keywords:

Created on 2009-10-14 14:18 by Yinon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg93989 - (view) Author: Yinon Ehrlich (Yinon) Date: 2009-10-14 14:18
threading.py line 122:
"cannot release un-aquired lock" --> "cannot release un-acquired lock"
msg93992 - (view) Author: Yinon Ehrlich (Yinon) Date: 2009-10-14 14:21
just saw now that the word 'un-aquired' is repeated several times in the
threading module...
msg93999 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-10-14 15:52
Fixed in r75402. Not backporting, since an exception message is changed.

Thanks!
History
Date User Action Args
2022-04-11 14:56:53adminsetgithub: 51374
2009-10-14 15:52:39georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg93999

resolution: fixed
2009-10-14 14:21:01Yinonsetmessages: + msg93992
2009-10-14 14:18:44Yinoncreate