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.09:37:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452159464.48.0.601663623148.issue26026@psf.upfronthosting.co.za>
In-reply-to
Content
type( A(1) % A(2) ) is A
type( A(1) % A(-2) ) is int
type( A(-1) % A(-2) ) is A
type( A(2) % A(1) ) is int
type( A(1) % A(2**30+2) ) is A
type( A(2**30+1) % A(2**30+2) ) is int
type( A(2**15+1) % A(2**15+2) ) is (A if 64bit else int)
History
Date User Action Args
2016-01-07 09:37:44h.venevsetrecipients: + h.venev, SilentGhost
2016-01-07 09:37:44h.venevsetmessageid: <1452159464.48.0.601663623148.issue26026@psf.upfronthosting.co.za>
2016-01-07 09:37:44h.venevlinkissue26026 messages
2016-01-07 09:37:44h.venevcreate