Josh Rosenberg added the comment:

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.

----------
nosy: +josh.rosenberg

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22361>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to