diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-24 02:34:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-24 02:34:53 (GMT) |
commit | 35e8c4653455ceeac5b49b369b4c11be6096ea17 (patch) | |
tree | 56520e401f31f82834da704af56430a70683bac8 /Doc/library/math.rst | |
parent | 3513358e11df32cc02047e48a9a9a976343ba16c (diff) | |
download | cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.zip cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.gz cpython-35e8c4653455ceeac5b49b369b4c11be6096ea17.tar.bz2 |
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r-- | Doc/library/math.rst | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index e906af2..d9593a8 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -102,7 +102,6 @@ Number-theoretic and representation functions: Return the :class:`Real` value *x* truncated to an :class:`Integral` (usually a long integer). Delegates to ``x.__trunc__()``. - .. versionadded:: 2.6 Note that :func:`frexp` and :func:`modf` have a different call/return pattern than their C equivalents: they take a single argument and return a pair of @@ -133,8 +132,6 @@ Power and logarithmic functions: Return the natural logarithm of *1+x* (base *e*). The result is calculated in a way which is accurate for *x* near zero. - .. versionadded:: 2.6 - .. function:: log10(x) @@ -150,9 +147,6 @@ Power and logarithmic functions: ``x`` is negative, and ``y`` is not an integer then ``pow(x, y)`` is undefined, and raises :exc:`ValueError`. - .. versionchanged:: 2.6 - The outcome of ``1**nan`` and ``nan**0`` was undefined. - .. function:: sqrt(x) @@ -225,22 +219,16 @@ Hyperbolic functions: Return the inverse hyperbolic cosine of *x*. - .. versionadded:: 2.6 - .. function:: asinh(x) Return the inverse hyperbolic sine of *x*. - .. versionadded:: 2.6 - .. function:: atanh(x) Return the inverse hyperbolic tangent of *x*. - .. versionadded:: 2.6 - .. function:: cosh(x) |