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 pitrou, stw
Date 2012-05-21.22:20:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337638810.29.0.228969819841.issue14775@psf.upfronthosting.co.za>
In-reply-to
Content
> As I understand it (from issue #4074) tuples of atomic types are supposed to be untracked.

Actually, it is done lazily:

>>> t = 1,2
>>> gc.is_tracked(t)
True
>>> gc.collect()
0
>>> gc.is_tracked(t)
False
History
Date User Action Args
2012-05-21 22:20:10pitrousetrecipients: + pitrou, stw
2012-05-21 22:20:10pitrousetmessageid: <1337638810.29.0.228969819841.issue14775@psf.upfronthosting.co.za>
2012-05-21 22:20:07pitroulinkissue14775 messages
2012-05-21 22:20:07pitroucreate