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 MrJean1, mark.dickinson, rhettinger
Date 2008-05-12.18:42:25
SpamBayes Score 0.006034836
Marked as misclassified No
Message-id <1210617749.68.0.811291224218.issue2819@psf.upfronthosting.co.za>
In-reply-to
Content
> One related issue is testing these, how can a NaN and +/-Infinity 
> float object be created in Python?

In 2.6 and 3.0 (but not 2.5 and older), float('nan'), float('inf') and 
float('-inf') should all work reliably across platforms (or at least 
those platforms that support infs and nans).  If they don't it's a bug.

> (2) On your 2nd comment, supporting non-IEEE floating point, perhaps
> the Kahan method should be used in that case.  If so, the next
> question is how to detect that?

Actually, I think you could probably just leave the algorithm exactly as 
it is, but put a warning in the documentation that the exactness only 
applies in the presence of IEEE 754 semantics.  Practically everybody's 
on an IEEE 754 platform anyway.

> There are two symbols in pyconfig.h HAVE_IEEEFP_H and
> HAVE_LIBIEEE.  Are those the proper ones to determine IEEE floating
> point support?

I'm not sure that either of these is the right thing.  Neither is 
defined on my MacBook, for example.

> (3) On the 3rd comment, Raymond and I did discus using a single 
> function to be called by the math and cmath modules.

I think you're right that it's easier to just duplicate the code.
It's a nice feature that this function only has to pass once through the 
data, and it doesn't seem worth losing that to save a little bit of code 
duplication.

I still wonder whether there's a way to avoid incorrectly signaling 
overflow in the case where the result is finite. (e.g. sum([1e308, 
1e308, -1e308])).
History
Date User Action Args
2008-05-12 18:42:30mark.dickinsonsetspambayes_score: 0.00603484 -> 0.006034836
recipients: + mark.dickinson, rhettinger, MrJean1
2008-05-12 18:42:29mark.dickinsonsetspambayes_score: 0.00603484 -> 0.00603484
messageid: <1210617749.68.0.811291224218.issue2819@psf.upfronthosting.co.za>
2008-05-12 18:42:28mark.dickinsonlinkissue2819 messages
2008-05-12 18:42:26mark.dickinsoncreate