summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-07-22 19:03:05 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-07-22 19:03:05 (GMT)
commit5d4d16e44d3717316c7e88cb6e6250f32ef0d38a (patch)
treefa648b5007ecb31c0f80dd79bcabb7cb2f3f43cd /Doc/whatsnew
parent340383ce70c17cf6a1d4c9c87320c7dc979b205f (diff)
downloadcpython-5d4d16e44d3717316c7e88cb6e6250f32ef0d38a.zip
cpython-5d4d16e44d3717316c7e88cb6e6250f32ef0d38a.tar.gz
cpython-5d4d16e44d3717316c7e88cb6e6250f32ef0d38a.tar.bz2
Fix credits for math.sum()
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.6.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst
index f895f80..a47bc00 100644
--- a/Doc/whatsnew/2.6.rst
+++ b/Doc/whatsnew/2.6.rst
@@ -1539,7 +1539,8 @@ Here are all of the changes that Python 2.6 makes to the core Python language.
* :func:`~math.sum` adds up the stream of numbers from an iterable,
and is careful to avoid loss of precision by calculating partial sums.
- (Contributed by Jean Brouwers; :issue:`2819`.)
+ (Contributed by Jean Brouwers, Raymond Hettinger, and Mark Dickinson;
+ :issue:`2819`.)
* The inverse hyperbolic functions :func:`~math.acosh`, :func:`~math.asinh`
and :func:`~math.atanh`.