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 pitrou
Recipients bquinlan, gregory.p.smith, jyasskin, pitrou, stutzbach
Date 2011-03-23.20:04:22
SpamBayes Score 2.2667664e-05
Marked as misclassified No
Message-id <1300910659.3495.30.camel@localhost.localdomain>
In-reply-to <1300910447.47.0.545454383533.issue11635@psf.upfronthosting.co.za>
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?

Ah, thank you, it does happen here too. I should fix the error (a typo)
and add tests for this too.
History
Date User Action Args
2011-03-23 20:04:24pitrousetrecipients: + pitrou, gregory.p.smith, bquinlan, jyasskin, stutzbach
2011-03-23 20:04:22pitroulinkissue11635 messages
2011-03-23 20:04:22pitroucreate