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, serhiy.storchaka, skrah
Date 2012-05-04.19:39:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336160374.25.0.0230621275131.issue14722@psf.upfronthosting.co.za>
In-reply-to
Content
> But values that rounded to DBL_MAX can raise
> OverflowError. In any case it's too difficult to achieve strict behavior
> in this corner case.

Well, PyLong_AsDouble *does* achieve strict behaviour in this corner case :-).  Integers less than 0.5 * (sys.float_info.max + 2**1024) in absolute value give finite results;  integers greater than or equal to that bound produce an OverflowError.

> Take a look at the tests and may be you'll see the system.

I don't see how looking at the tests helps with making a decision about breaking backwards compatibility or not. :-)
History
Date User Action Args
2012-05-04 19:39:34mark.dickinsonsetrecipients: + mark.dickinson, skrah, serhiy.storchaka
2012-05-04 19:39:34mark.dickinsonsetmessageid: <1336160374.25.0.0230621275131.issue14722@psf.upfronthosting.co.za>
2012-05-04 19:39:33mark.dickinsonlinkissue14722 messages
2012-05-04 19:39:33mark.dickinsoncreate