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 Mark.Shannon
Recipients Mark.Shannon, benjamin.peterson, pingebretson, pitrou
Date 2014-02-16.15:27:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392564446.96.0.0587487463539.issue20637@psf.upfronthosting.co.za>
In-reply-to
Content
Well spotted.

I don't think that the line 
COPYVAL(tp_dictoffset);
should be removed.

inherit_special() is called from PyType_Ready
which is used to initialise static TypeObjects.
So builtin class B which doesn't set tp_dictoffset,
but has builtin class A as its base, will not get its
tp_dictoffset initialized from A.
History
Date User Action Args
2014-02-16 15:27:27Mark.Shannonsetrecipients: + Mark.Shannon, pitrou, benjamin.peterson, pingebretson
2014-02-16 15:27:26Mark.Shannonsetmessageid: <1392564446.96.0.0587487463539.issue20637@psf.upfronthosting.co.za>
2014-02-16 15:27:26Mark.Shannonlinkissue20637 messages
2014-02-16 15:27:26Mark.Shannoncreate