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 brechtm
Recipients arigo, brechtm
Date 2015-08-06.08:58:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1438851529.55.0.595655666775.issue24806@psf.upfronthosting.co.za>
In-reply-to
Content
Similar inconsistent behavior for:

    class Object(object): pass
    class Integer(Object, int): pass

versus

    class Integer(object, int): pass

However, I'm successfully using the first version, which saves some boilerplate code for emulating ints. Instances of Integer seem to behave exactly like ints. Personally, I wouldn't like to loose this ability. (May I shouldn't have created this ticket :).
History
Date User Action Args
2015-08-06 08:58:49brechtmsetrecipients: + brechtm, arigo
2015-08-06 08:58:49brechtmsetmessageid: <1438851529.55.0.595655666775.issue24806@psf.upfronthosting.co.za>
2015-08-06 08:58:49brechtmlinkissue24806 messages
2015-08-06 08:58:49brechtmcreate