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 mark.dickinson
Recipients Scott Turner, mark.dickinson, r.david.murray, terry.reedy
Date 2015-10-17.11:32:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445081521.7.0.0425819188622.issue25335@psf.upfronthosting.co.za>
In-reply-to
Content
> I am pretty sure the 2.x anomaly is tied up with having short ints plus the anomaly of having one more negative than positive int.

Yes, that was the rationale for folding in the minus operation. It had some odd side-effects, though:

>>> -1j
-1j
>>> -(1j)
(-0-1j)

See issue 9011 for more discussion.
History
Date User Action Args
2015-10-17 11:32:01mark.dickinsonsetrecipients: + mark.dickinson, terry.reedy, r.david.murray, Scott Turner
2015-10-17 11:32:01mark.dickinsonsetmessageid: <1445081521.7.0.0425819188622.issue25335@psf.upfronthosting.co.za>
2015-10-17 11:32:01mark.dickinsonlinkissue25335 messages
2015-10-17 11:32:01mark.dickinsoncreate