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.

Author brandon-rhodes
Recipients Mr Shore, brandon-rhodes, christian.heimes, facundobatista, nadiasvertex
Date 2011-09-14.02:23:10
SpamBayes Score 3.2470045e-05
Marked as misclassified No
Message-id <1315966991.86.0.483569616924.issue1947@psf.upfronthosting.co.za>
In-reply-to
Content
In case Google brings anyone else to this bug: this error typically indicates that a `threading.py` which is not actually the Standard Library's `threading` module has somehow wound up on an earlier path in `sys.path` and is therefore shadowing the Standard Library module. This upsets the Python exit logic, which tries to run `threading._shutdown()` if `threading` exists in `sys.modules`. I just helped someone on Stack Overflow with a situation like this, which in that case resulted from an error in how `pylint` works.
History
Date User Action Args
2011-09-14 02:23:12brandon-rhodessetrecipients: + brandon-rhodes, facundobatista, christian.heimes, Mr Shore, nadiasvertex
2011-09-14 02:23:11brandon-rhodessetmessageid: <1315966991.86.0.483569616924.issue1947@psf.upfronthosting.co.za>
2011-09-14 02:23:11brandon-rhodeslinkissue1947 messages
2011-09-14 02:23:10brandon-rhodescreate