[Python-checkins] r59723 - python/trunk/Doc/library/math.rst

andrew.kuchling python-checkins at python.org
Fri Jan 4 19:25:05 CET 2008


Author: andrew.kuchling
Date: Fri Jan  4 19:25:05 2008
New Revision: 59723

Modified:
   python/trunk/Doc/library/math.rst
Log:
Fix markup

Modified: python/trunk/Doc/library/math.rst
==============================================================================
--- python/trunk/Doc/library/math.rst	(original)
+++ python/trunk/Doc/library/math.rst	Fri Jan  4 19:25:05 2008
@@ -36,7 +36,7 @@
    Return *x* with the sign of *y*. ``copysign`` copies the sign bit of an IEEE
    754 float, ``copysign(1, -0.0)`` returns *-1.0*.
 
-   ..versionadded:: 2.6
+   .. versionadded:: 2.6
 
 
 .. function:: fabs(x)
@@ -78,7 +78,7 @@
 
    Checks if the float *x* is positive or negative infinite.
 
-   ..versionadded:: 2.6
+   .. versionadded:: 2.6
 
 
 .. function:: isnan(x)
@@ -88,7 +88,7 @@
    ``inf / inf`` or any operation involving a NaN, e.g. ``nan * 1``, return
    a NaN.
 
-   ..versionadded:: 2.6
+   .. versionadded:: 2.6
 
 
 .. function:: ldexp(x, i)


More information about the Python-checkins mailing list