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 sbt
Recipients JBernardo, eric.araujo, maker, rhettinger, sbt, serhiy.storchaka, terry.reedy
Date 2012-10-03.10:59:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1349261977.4.0.877303904143.issue13290@psf.upfronthosting.co.za>
In-reply-to
Content
The patch does not seem to walk the mro to look for slots in base classes.  Also, an instance with a __dict__ attribute may also have attributes stored in slots.

BTW, copyreg._slotnames(cls) properly calculates the slot names for cls and tries to cache them as cls.__slotnames__.  Pickle does the equivalent of

    try:
        slotnames = cls.__slotnames__
    except AttributeError:
        slotnames = copyreg._slotnames(cls)
History
Date User Action Args
2012-10-03 10:59:37sbtsetrecipients: + sbt, rhettinger, terry.reedy, eric.araujo, maker, JBernardo, serhiy.storchaka
2012-10-03 10:59:37sbtsetmessageid: <1349261977.4.0.877303904143.issue13290@psf.upfronthosting.co.za>
2012-10-03 10:59:37sbtlinkissue13290 messages
2012-10-03 10:59:37sbtcreate