[Python-checkins] r65189 - python/trunk/Doc/whatsnew/2.6.rst

raymond.hettinger python-checkins at python.org
Tue Jul 22 21:03:06 CEST 2008


Author: raymond.hettinger
Date: Tue Jul 22 21:03:05 2008
New Revision: 65189

Log:
Fix credits for math.sum()

Modified:
   python/trunk/Doc/whatsnew/2.6.rst

Modified: python/trunk/Doc/whatsnew/2.6.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.6.rst	(original)
+++ python/trunk/Doc/whatsnew/2.6.rst	Tue Jul 22 21:03:05 2008
@@ -1539,7 +1539,8 @@
 
   * :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`.


More information about the Python-checkins mailing list