diff options
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r-- | Doc/library/math.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index dc8c74a..958d60b 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -36,8 +36,6 @@ Number-theoretic and representation functions: 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 - .. function:: fabs(x) @@ -78,8 +76,6 @@ Number-theoretic and representation functions: Checks if the float *x* is positive or negative infinite. - ..versionadded:: 2.6 - .. function:: isnan(x) @@ -88,8 +84,6 @@ Number-theoretic and representation functions: ``inf / inf`` or any operation involving a NaN, e.g. ``nan * 1``, return a NaN. - ..versionadded:: 2.6 - .. function:: ldexp(x, i) |