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 mark.dickinson
Date 2021-08-21.13:31:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629552707.86.0.779459705805.issue44970@roundup.psfhosted.org>
In-reply-to
Content
Here's just one example that doesn't make a whole lot of sense: in this case, z ** 1 should be returning z.

>>> z = complex(3, float("inf"))
>>> z ** 1
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: complex exponentiation
History
Date User Action Args
2021-08-21 13:31:47mark.dickinsonsetrecipients: + mark.dickinson
2021-08-21 13:31:47mark.dickinsonsetmessageid: <1629552707.86.0.779459705805.issue44970@roundup.psfhosted.org>
2021-08-21 13:31:47mark.dickinsonlinkissue44970 messages
2021-08-21 13:31:47mark.dickinsoncreate