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-06-03.01:19:53
SpamBayes Score 0.082283475
Marked as misclassified No
Message-id <1212456003.48.0.518728039605.issue2819@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a patch that fixes the problems with math.sum on x86 machines that 
aren't using SSE2.

On these machines, the patched version of math.sum does almost the entire 
calculation using long doubles instead of doubles.  Then in the final 
summation, the top long double is split into a double and a residue long 
double.
History
Date User Action Args
2008-06-03 01:20:04mark.dickinsonsetspambayes_score: 0.0822835 -> 0.082283475
recipients: + mark.dickinson, rhettinger, MrJean1
2008-06-03 01:20:03mark.dickinsonsetspambayes_score: 0.0822835 -> 0.0822835
messageid: <1212456003.48.0.518728039605.issue2819@psf.upfronthosting.co.za>
2008-06-03 01:20:01mark.dickinsonlinkissue2819 messages
2008-06-03 01:20:01mark.dickinsoncreate