[Python-checkins] r80826 - python/trunk/Doc/library/numbers.rst

mark.dickinson python-checkins at python.org
Wed May 5 23:52:39 CEST 2010


Author: mark.dickinson
Date: Wed May  5 23:52:39 2010
New Revision: 80826

Log:
Issue 8628: fix incorrect documentation for numbers.Complex.imag.

Modified:
   python/trunk/Doc/library/numbers.rst

Modified: python/trunk/Doc/library/numbers.rst
==============================================================================
--- python/trunk/Doc/library/numbers.rst	(original)
+++ python/trunk/Doc/library/numbers.rst	Wed May  5 23:52:39 2010
@@ -31,11 +31,11 @@
 
    .. attribute:: real
 
-      Abstract. Retrieves the :class:`Real` component of this number.
+      Abstract. Retrieves the real component of this number.
 
    .. attribute:: imag
 
-      Abstract. Retrieves the :class:`Real` component of this number.
+      Abstract. Retrieves the imaginary component of this number.
 
    .. method:: conjugate()
 


More information about the Python-checkins mailing list