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 gregory.p.smith, loewis, pitrou, rhettinger, stutzbach
Date 2008-12-18.10:37:01
SpamBayes Score 0.00034453746
Marked as misclassified No
Message-id <1229596626.88.0.504410760348.issue4688@psf.upfronthosting.co.za>
In-reply-to
Content
Here is an alternate patch which does the tuple optimization in the GC.
I don't like it a lot, first because it puts some type-specific code in
gcmodule, second because it invalidates the dict optimization (since
tuples are untracked only when walked by the GC, they are still tracked
when added to a dict and therefore the dict will be tracked too).
History
Date User Action Args
2008-12-18 10:37:07pitrousetrecipients: + pitrou, loewis, rhettinger, gregory.p.smith, stutzbach
2008-12-18 10:37:07pitrousetmessageid: <1229596626.88.0.504410760348.issue4688@psf.upfronthosting.co.za>
2008-12-18 10:37:06pitroulinkissue4688 messages
2008-12-18 10:37:05pitroucreate