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 Yaniv.Aknin
Recipients Yaniv.Aknin
Date 2010-05-18.12:06:26
SpamBayes Score 0.032730825
Marked as misclassified No
Message-id <1274184389.99.0.605763299992.issue8749@psf.upfronthosting.co.za>
In-reply-to
Content
While reading the source I saw that recent py3k has this in Objects/object.c (reasonably recent trunk has it as well):

#if 0 /* XXX this is not quite _PyType_Lookup anymore */
    /* Inline _PyType_Lookup */
    { ... removed ...
    }
#else
    descr = _PyType_Lookup(tp, name);
#endif

This was commented out (on trunk, I assumed on py3k it was for the same reason) by amaury.forgeotdarc on revision 59943, when a patch to the real _PyType_Lookup was applied.

I think it can be safely removed.
History
Date User Action Args
2010-05-18 12:06:30Yaniv.Akninsetrecipients: + Yaniv.Aknin
2010-05-18 12:06:29Yaniv.Akninsetmessageid: <1274184389.99.0.605763299992.issue8749@psf.upfronthosting.co.za>
2010-05-18 12:06:27Yaniv.Akninlinkissue8749 messages
2010-05-18 12:06:26Yaniv.Aknincreate