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 stw
Recipients pitrou, stw
Date 2012-05-21.20:36:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337632585.4.0.150656452216.issue14775@psf.upfronthosting.co.za>
In-reply-to
Content
One other thing - python 2.7 added the is_tracked function to the gc module. As I understand it (from issue #4074) tuples of atomic types are supposed to be untracked. However, in python 2.7:

>>> gc.is_tracked((1, 2))
True
>>> gc.is_tracked("hello")
True
History
Date User Action Args
2012-05-21 20:36:25stwsetrecipients: + stw, pitrou
2012-05-21 20:36:25stwsetmessageid: <1337632585.4.0.150656452216.issue14775@psf.upfronthosting.co.za>
2012-05-21 20:36:24stwlinkissue14775 messages
2012-05-21 20:36:24stwcreate