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 eryksun
Recipients Arfrever, amaury.forgeotdarc, benjamin.peterson, docs@python, eryksun, georg.brandl, pitrou, techdragon
Date 2014-11-04.12:30:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1415104204.05.0.191006124233.issue22790@psf.upfronthosting.co.za>
In-reply-to
Content
__doc__ and __module__ are also getsets (to support built-in types), but it's nothing to worry about since the attributes can't be deleted.

I think the most value added here is for listing __mro__ and the others that Georg mentioned. Should the following attributes be blacklisted from dir() as CPython implementation details?

    __base__
    __flags__
    __basicsize__
    __itemsize__
    __dictoffset__
    __weakrefoffset__

It's not as if people will miss what they never had.
History
Date User Action Args
2014-11-04 12:30:04eryksunsetrecipients: + eryksun, georg.brandl, amaury.forgeotdarc, pitrou, benjamin.peterson, Arfrever, docs@python, techdragon
2014-11-04 12:30:04eryksunsetmessageid: <1415104204.05.0.191006124233.issue22790@psf.upfronthosting.co.za>
2014-11-04 12:30:04eryksunlinkissue22790 messages
2014-11-04 12:30:03eryksuncreate