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 multiks2200
Recipients multiks2200, rhettinger
Date 2021-04-23.06:16:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1619158585.78.0.880961507684.issue43911@roundup.psfhosted.org>
In-reply-to
Content
Just inspected the PriorityQueue and LifoQueue classes, they dont employ a  deque at all but simply a list, but all other Queues tested do (except the native SimpleQueue). Since they don't leak, the leak itself seems to be coming from deque, and the fact that it does not get released after deletion only in a single case when Conditions are involved, makes me think the combination of two produces this unreleasable leak.
History
Date User Action Args
2021-04-23 06:16:25multiks2200setrecipients: + multiks2200, rhettinger
2021-04-23 06:16:25multiks2200setmessageid: <1619158585.78.0.880961507684.issue43911@roundup.psfhosted.org>
2021-04-23 06:16:25multiks2200linkissue43911 messages
2021-04-23 06:16:25multiks2200create