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 Jeffrey.Kintscher
Recipients Jeffrey.Kintscher, amaury.forgeotdarc, belopolsky, lauri.alanko, meador.inge
Date 2019-05-15.02:22:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557886922.32.0.266254756784.issue18060@roundup.psfhosted.org>
In-reply-to
Content
The current behavior,

    stgdict->length = len;

sets the number of elements in the class excluding its base classes. The new behavior of

    stgdict->length = ffi_ofs + len;

sets the total number of elements in both the class and its base classes.

This works as intended as long as the child classes do not add any more elements.
History
Date User Action Args
2019-05-15 02:22:02Jeffrey.Kintschersetrecipients: + Jeffrey.Kintscher, amaury.forgeotdarc, belopolsky, meador.inge, lauri.alanko
2019-05-15 02:22:02Jeffrey.Kintschersetmessageid: <1557886922.32.0.266254756784.issue18060@roundup.psfhosted.org>
2019-05-15 02:22:02Jeffrey.Kintscherlinkissue18060 messages
2019-05-15 02:22:02Jeffrey.Kintschercreate