summaryrefslogtreecommitdiff
path: root/Doc/library/cmath.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 +0000
committerBenjamin Peterson <benjamin@python.org>2008-04-24 02:34:53 +0000
commit69ac534bd8695b464b0d6780aed244e06e562210 (patch)
tree3722ebd857de75cbce0eba0263001db9af9c99ba /Doc/library/cmath.rst
parentb17ba96d9de56577398d2172804f848747ce0a42 (diff)
downloadcpython-69ac534bd8695b464b0d6780aed244e06e562210.tar.gz
remove some old versionchanged and versionadded directives
Diffstat (limited to 'Doc/library/cmath.rst')
-rw-r--r--Doc/library/cmath.rst19
1 files changed, 0 insertions, 19 deletions
diff --git a/Doc/library/cmath.rst b/Doc/library/cmath.rst
index f78f69c5bd..83a220c924 100644
--- a/Doc/library/cmath.rst
+++ b/Doc/library/cmath.rst
@@ -65,8 +65,6 @@ Definition::
Return phase, also known as the argument, of a complex.
- .. versionadded:: 2.6
-
.. function:: polar(x)
@@ -75,16 +73,12 @@ Definition::
*r* and *phi*. *r* is the distance from 0 and *phi* the phase
angle.
- .. versionadded:: 2.6
-
.. function:: rect(r, phi)
Convert from polar coordinates to rectangular coordinates and return
a :class:`complex`.
- .. versionadded:: 2.6
-
cmath functions
@@ -115,9 +109,6 @@ cmath functions
continuous from the right. The other extends from ``-1j`` along
the imaginary axis to ``-∞j``, continuous from the left.
- .. versionchanged:: 2.6
- branch cuts moved to match those recommended by the C99 standard
-
.. function:: atan(x)
@@ -126,9 +117,6 @@ cmath functions
other extends from ``-1j`` along the imaginary axis to ``-∞j``, continuous
from the left.
- .. versionchanged:: 2.6
- direction of continuity of upper cut reversed
-
.. function:: atanh(x)
@@ -137,9 +125,6 @@ cmath functions
other extends from ``-1`` along the real axis to ``-∞``, continuous from
above.
- .. versionchanged:: 2.6
- direction of continuity of right cut reversed
-
.. function:: cos(x)
@@ -161,15 +146,11 @@ cmath functions
Return *True* if the real or the imaginary part of x is positive
or negative infinity.
- .. versionadded:: 2.6
-
.. function:: isnan(x)
Return *True* if the real or imaginary part of x is not a number (NaN).
- .. versionadded:: 2.6
-
.. function:: log(x[, base])