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 davin, pitrou, serhiy.storchaka, vstinner
Date 2017-05-04.17:03:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493917396.36.0.335165536592.issue30171@psf.upfronthosting.co.za>
In-reply-to
Content
The thread seems to be stopped when the Queue object is finalized:

        # Send sentinel to the thread queue object when garbage collected
        self._close = Finalize(
            self, Queue._finalize_close,
            [self._buffer, self._notempty],
            exitpriority=10
            )

I don't think the other resources (pipe, lock, semaphore) need explicit cleaning.
History
Date User Action Args
2017-05-04 17:03:16pitrousetrecipients: + pitrou, vstinner, serhiy.storchaka, davin
2017-05-04 17:03:16pitrousetmessageid: <1493917396.36.0.335165536592.issue30171@psf.upfronthosting.co.za>
2017-05-04 17:03:16pitroulinkissue30171 messages
2017-05-04 17:03:16pitroucreate