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 rhettinger
Recipients Sandy Chapman, docs@python, r.david.murray, rhettinger
Date 2015-05-27.15:02:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432738922.48.0.00525454748975.issue24296@psf.upfronthosting.co.za>
In-reply-to
Content
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().
History
Date User Action Args
2015-05-27 15:02:02rhettingersetrecipients: + rhettinger, r.david.murray, docs@python, Sandy Chapman
2015-05-27 15:02:02rhettingersetmessageid: <1432738922.48.0.00525454748975.issue24296@psf.upfronthosting.co.za>
2015-05-27 15:02:02rhettingerlinkissue24296 messages
2015-05-27 15:02:02rhettingercreate