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: ThreadError is not in threading.__all__
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: anacrolix, python-dev
Priority: normal Keywords: patch

Created on 2011-08-02 06:46 by anacrolix, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
export-thread-error.patch anacrolix, 2011-08-02 06:46
Messages (2)
msg141546 - (view) Author: Matt Joiner (anacrolix) Date: 2011-08-02 06:46
>>> from threading import *
>>> ThreadError
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'ThreadError' is not defined
msg141575 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-08-02 18:06
New changeset bbeda42ea6a8 by Benjamin Peterson in branch 'default':
add ThreadError to threading.__all__ (closes #12679)
http://hg.python.org/cpython/rev/bbeda42ea6a8
History
Date User Action Args
2022-04-11 14:57:20adminsetgithub: 56888
2011-08-02 18:06:28python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg141575

resolution: fixed
stage: resolved
2011-08-02 06:46:51anacrolixcreate