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 Tom Krauss, mark.dickinson, steven.daprano
Date 2017-02-20.11:41:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487590875.48.0.981431990632.issue29602@psf.upfronthosting.co.za>
In-reply-to
Content
Looking at the source, there's also an issue with complex subclasses here:

>>> class C(complex):
...     pass
... 
>>> complex(C(-0j))
(-0+0j)
>>> complex(-0j)
(-0-0j)
History
Date User Action Args
2017-02-20 11:41:15mark.dickinsonsetrecipients: + mark.dickinson, steven.daprano, Tom Krauss
2017-02-20 11:41:15mark.dickinsonsetmessageid: <1487590875.48.0.981431990632.issue29602@psf.upfronthosting.co.za>
2017-02-20 11:41:15mark.dickinsonlinkissue29602 messages
2017-02-20 11:41:15mark.dickinsoncreate