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 scoder
Recipients scoder
Date 2008-05-25.08:05:47
SpamBayes Score 0.051119015
Marked as misclassified No
Message-id <1211702749.69.0.15718735899.issue2963@psf.upfronthosting.co.za>
In-reply-to
Content
The method cache is deactivated in current Py3. As Lisandro Dalcín
noticed, the following code in typeobject.c always returns false for a
Py3 identifier:

#define MCACHE_CACHEABLE_NAME(name)                                     \
		PyString_CheckExact(name) &&                            \
		PyString_GET_SIZE(name) <= MCACHE_MAX_ATTR_SIZE
History
Date User Action Args
2008-05-25 08:05:50scodersetspambayes_score: 0.051119 -> 0.051119015
recipients: + scoder
2008-05-25 08:05:49scodersetspambayes_score: 0.051119 -> 0.051119
messageid: <1211702749.69.0.15718735899.issue2963@psf.upfronthosting.co.za>
2008-05-25 08:05:48scoderlinkissue2963 messages
2008-05-25 08:05:47scodercreate