]> granicus.if.org Git - python/commitdiff
math.fsum docs did not show up because of a misplaced testsetup directive
authorŁukasz Langa <lukasz@langa.pl>
Fri, 18 Jan 2013 12:40:43 +0000 (13:40 +0100)
committerŁukasz Langa <lukasz@langa.pl>
Fri, 18 Jan 2013 12:40:43 +0000 (13:40 +0100)
Doc/library/math.rst

index 5d6f951a1c00529edb59637dab938f9e668ec76d..c082980fb599c48ee28f96ad724921d183ce6fbe 100644 (file)
@@ -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::