Merged revisions 73636 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
........
r73636 | mark.dickinson | 2009-06-28 21:59:42 +0100 (Sun, 28 Jun 2009) | 2 lines
Issue #6354: More fixes for code examples involving the repr of a float.
........
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 649487f..488230a 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -82,7 +82,7 @@
loss of precision by tracking multiple intermediate partial sums::
>>> sum([.1, .1, .1, .1, .1, .1, .1, .1, .1, .1])
- 0.99999999999999989
+ 0.9999999999999999
>>> fsum([.1, .1, .1, .1, .1, .1, .1, .1, .1, .1])
1.0