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 h.venev
Recipients SilentGhost, h.venev
Date 2016-01-07.08:02:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452153743.28.0.711400727146.issue26026@psf.upfronthosting.co.za>
In-reply-to
Content
OK.

class A(int):
    pass

a=A(1)
b=A(2)
print(type(a*b), type(a+b), type(a-b), type(a**b), type(a^b), type(a&b), type(a|b), type(a//b), type(a%b))
History
Date User Action Args
2016-01-07 08:02:23h.venevsetrecipients: + h.venev, SilentGhost
2016-01-07 08:02:23h.venevsetmessageid: <1452153743.28.0.711400727146.issue26026@psf.upfronthosting.co.za>
2016-01-07 08:02:23h.venevlinkissue26026 messages
2016-01-07 08:02:23h.venevcreate