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 brandtbucher
Recipients brandtbucher, rhettinger, serhiy.storchaka, vstinner
Date 2020-12-03.01:14:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1606958094.05.0.739981144948.issue42536@roundup.psfhosted.org>
In-reply-to
Content
Simple demo:

>>> import gc
>>> gc.disable()
>>> z = zip([[]])
>>> gc.is_tracked(next(z))
True
>>> z = zip([[]])
>>> gc.collect()
0
>>> gc.is_tracked(next(z))
False
History
Date User Action Args
2020-12-03 01:14:54brandtbuchersetrecipients: + brandtbucher, rhettinger, vstinner, serhiy.storchaka
2020-12-03 01:14:54brandtbuchersetmessageid: <1606958094.05.0.739981144948.issue42536@roundup.psfhosted.org>
2020-12-03 01:14:54brandtbucherlinkissue42536 messages
2020-12-03 01:14:54brandtbuchercreate