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 alex, jcea, mark.dickinson, mattip, serhiy.storchaka, terry.reedy
Date 2013-10-13.16:33:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381682001.85.0.195785980602.issue15996@psf.upfronthosting.co.za>
In-reply-to
Content
See also http://stackoverflow.com/q/18243270/270986 , which points out the following inconsistencies:

>>> 1e300 ** 2
OverflowError: (34, 'Result too large')
>>> 1e300j ** 2
OverflowError: complex exponentiation
>>> (1e300 + 1j) ** 2
OverflowError: complex exponentiation
>>> (1e300 + 1e300j) ** 2
(nan+nanj)
History
Date User Action Args
2013-10-13 16:33:21mark.dickinsonsetrecipients: + mark.dickinson, terry.reedy, jcea, alex, serhiy.storchaka, mattip
2013-10-13 16:33:21mark.dickinsonsetmessageid: <1381682001.85.0.195785980602.issue15996@psf.upfronthosting.co.za>
2013-10-13 16:33:21mark.dickinsonlinkissue15996 messages
2013-10-13 16:33:21mark.dickinsoncreate