diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2008-05-23 01:35:30 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2008-05-23 01:35:30 (GMT) |
commit | 99dfe927590ef95b9ce42f8334e3126c5960ad6f (patch) | |
tree | 72a56f54ed7b3b8e9153fb585ee268b64a3f1cda /Misc | |
parent | cc858ccc500cf1606f64fc6cc47ab8af230c89e6 (diff) | |
download | cpython-99dfe927590ef95b9ce42f8334e3126c5960ad6f.zip cpython-99dfe927590ef95b9ce42f8334e3126c5960ad6f.tar.gz cpython-99dfe927590ef95b9ce42f8334e3126c5960ad6f.tar.bz2 |
Issue #2819: Add math.sum, a function that sums a sequence of floats
efficiently but with no intermediate loss of precision. Based on
Raymond Hettinger's ASPN recipe. Thanks Jean Brouwers for the patch.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -36,6 +36,9 @@ Core and Builtins Extension Modules ----------------- +- Issue #2819: add full-precision summation function to math module, + based on Hettinger's ASPN Python Cookbook recipe. + - Issue #2592: delegate nb_index and the floor/truediv slots in weakref.proxy. |