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 bquinlan
Recipients bquinlan, gregory.p.smith, jyasskin, pitrou, stutzbach
Date 2011-03-23.20:00:46
SpamBayes Score 0.005487693
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
Sorry, I didn't read an error message very carefully. When I apply your patch I see:

>>> from concurrent.futures import *
>>> from time import *
>>> t = ThreadPoolExecutor(5)
>>> t.submit(sleep, 100)
<Future at 0x8acc94c state=running>
>>> <ctrl-D>
Error in atexit._run_exitfuncs:
NameError: global name 'thread' is not defined

Does that not happen in your environment?
History
Date User Action Args
2011-03-23 20:00:47bquinlansetrecipients: + bquinlan, gregory.p.smith, pitrou, jyasskin, stutzbach
2011-03-23 20:00:47bquinlansetmessageid: <[email protected]>
2011-03-23 20:00:46bquinlanlinkissue11635 messages
2011-03-23 20:00:46bquinlancreate