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 MrJean1
Recipients MrJean1, mark.dickinson, rhettinger
Date 2008-05-12.19:45:01
SpamBayes Score 0.0022435926
Marked as misclassified No
Message-id <1210621503.21.0.690706840187.issue2819@psf.upfronthosting.co.za>
In-reply-to
Content
There may be another reason to use a single summation function.  The 
summation functions does need (a copy of) the is_error() function from 
the math module.

The cmath module has a similar function called math_error() which 
slightly different from is_error().

It would be better, more consistent if both modules used the same 
function, say is_error() moved** to file Object/floatobject.c

Then, the math and cmath module can use ist_error() instead of each 
their own.  Also, the summation function can use it and function 
float_pow() in floatobject.c could.

/Jean Brouwers

**) and renamed to e.g. float_error().
History
Date User Action Args
2008-05-12 19:45:03MrJean1setspambayes_score: 0.00224359 -> 0.0022435926
recipients: + MrJean1, rhettinger, mark.dickinson
2008-05-12 19:45:03MrJean1setspambayes_score: 0.00224359 -> 0.00224359
messageid: <1210621503.21.0.690706840187.issue2819@psf.upfronthosting.co.za>
2008-05-12 19:45:02MrJean1linkissue2819 messages
2008-05-12 19:45:01MrJean1create