Raymond Hettinger added the comment:

It is normal for daemon threads to not be shut down.   That is why they exist.  
The purpose of Queue.join() is to give other threads a way to know when daemons 
have finished doing their work (i.e. a print manager thread to indicate that it 
is done printing).  If the worker threads were actually going to terminate, you 
wouldn't need Queue.join(), you would use a Thread.join().

----------

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

Reply via email to