diff options
author | Łukasz Langa <lukasz@langa.pl> | 2013-01-18 12:41:14 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2013-01-18 12:41:14 (GMT) |
commit | 37bfa238da2b51d151da8a49f22dc60230494d4c (patch) | |
tree | f9ede0d3c3aabc164af1ac21798a4f36769c9134 /Doc/library/math.rst | |
parent | c68a4a048cf4e2d520b00546d8a4eef3a2723e8b (diff) | |
parent | 288234fe0e5fa91af5a00ab55b3136be041f659f (diff) | |
download | cpython-37bfa238da2b51d151da8a49f22dc60230494d4c.zip cpython-37bfa238da2b51d151da8a49f22dc60230494d4c.tar.gz cpython-37bfa238da2b51d151da8a49f22dc60230494d4c.tar.bz2 |
math.fsum docs did not show up because of a misplaced testsetup directive
(merged 3.2 fix)
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r-- | Doc/library/math.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index b056ca4..2f2558b 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -4,6 +4,9 @@ .. module:: math :synopsis: Mathematical functions (sin() etc.). +.. testsetup:: + + from math import fsum This module is always available. It provides access to the mathematical functions defined by the C standard. @@ -77,8 +80,6 @@ Number-theoretic and representation functions .. function:: fsum(iterable) -.. testsetup:: - >>> from math import fsum Return an accurate floating point sum of values in the iterable. Avoids loss of precision by tracking multiple intermediate partial sums:: |