[issue12679] ThreadError is not in threading.__all__

2011-08-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset bbeda42ea6a8 by Benjamin Peterson in branch 'default': add ThreadError to threading.__all__ (closes #12679) http://hg.python.org/cpython/rev/bbeda42ea6a8 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open

[issue12679] ThreadError is not in threading.__all__

2011-08-01 Thread Matt Joiner
New submission from Matt Joiner : >>> from threading import * >>> ThreadError Traceback (most recent call last): File "", line 1, in NameError: name 'ThreadError' is not defined -- components: Library (Lib) files: export-thread-error.patch keywords: patch messages: 141546 nosy: anacro