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 franciscouzo
Recipients franciscouzo
Date 2016-10-26.21:25:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za>
In-reply-to
Content
Most functions in the math library raise an OverflowError when the arguments are finite but the result is not.

>>> math.exp(sys.float_info.max)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OverflowError: math range error

>>> math.degrees(sys.float_info.max)
inf
History
Date User Action Args
2016-10-26 21:25:41franciscouzosetrecipients: + franciscouzo
2016-10-26 21:25:41franciscouzosetmessageid: <1477517141.8.0.311598434825.issue28540@psf.upfronthosting.co.za>
2016-10-26 21:25:41franciscouzolinkissue28540 messages
2016-10-26 21:25:41franciscouzocreate