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 josh.r
Recipients dktrkranz, josh.r
Date 2014-09-08.21:54:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1410213278.73.0.148916761807.issue22361@psf.upfronthosting.co.za>
In-reply-to
Content
Can you explain what benefit this would provide? Forcing the thread to exit gets you relatively little benefit. If it's an infrequently used executor, I suppose you avoid the cost of leaving worker threads blocked waiting for work, but that cost is tiny, and you pay for it with increased overhead to dispatch new tasks since they have to create new threads instead of using existing worker threads.
History
Date User Action Args
2014-09-08 21:54:38josh.rsetrecipients: + josh.r, dktrkranz
2014-09-08 21:54:38josh.rsetmessageid: <1410213278.73.0.148916761807.issue22361@psf.upfronthosting.co.za>
2014-09-08 21:54:38josh.rlinkissue22361 messages
2014-09-08 21:54:38josh.rcreate