summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-11 08:10:37 +0000
committerGeorg Brandl <georg@python.org>2010-12-11 08:10:37 +0000
commit0b883012c4b50a7428f39db91ec7ead93eae2ab0 (patch)
treea4a5ca20f1920257cf813ec4197c40b449f304e6
parentdff27f714d69251545884806c79965233517c47f (diff)
downloadcpython-git-0b883012c4b50a7428f39db91ec7ead93eae2ab0.tar.gz
#10676: fix bad wording in parallel with the lang ref.
-rw-r--r--Doc/library/stdtypes.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 31f00b6396..a0aee04c7f 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -360,10 +360,10 @@ Notes:
See :ref:`built-in-funcs` for a full description.
(4)
- Complex floor division operator, modulo operator, and :func:`divmod`.
-
.. deprecated:: 2.3
- Instead convert to float using :func:`abs` if appropriate.
+ The floor division operator, the modulo operator, and the :func:`divmod`
+ function are no longer defined for complex numbers. Instead, convert to
+ a floating point number using the :func:`abs` function if appropriate.
(5)
Also referred to as integer division. The resultant value is a whole integer,