[Python-checkins] r87169 - python/branches/release27-maint/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Sat Dec 11 09:10:37 CET 2010


Author: georg.brandl
Date: Sat Dec 11 09:10:37 2010
New Revision: 87169

Log:
#10676: fix bad wording in parallel with the lang ref.

Modified:
   python/branches/release27-maint/Doc/library/stdtypes.rst

Modified: python/branches/release27-maint/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/stdtypes.rst	(original)
+++ python/branches/release27-maint/Doc/library/stdtypes.rst	Sat Dec 11 09:10:37 2010
@@ -360,10 +360,10 @@
    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,


More information about the Python-checkins mailing list