[Python-checkins] r80829 - in python/branches/release31-maint: Doc/library/numbers.rst

mark.dickinson python-checkins at python.org
Wed May 5 23:55:12 CEST 2010


Author: mark.dickinson
Date: Wed May  5 23:55:11 2010
New Revision: 80829

Log:
Merged revisions 80828 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r80828 | mark.dickinson | 2010-05-05 22:54:18 +0100 (Wed, 05 May 2010) | 9 lines
  
  Merged revisions 80826 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r80826 | mark.dickinson | 2010-05-05 22:52:39 +0100 (Wed, 05 May 2010) | 1 line
    
    Issue 8628: fix incorrect documentation for numbers.Complex.imag.
  ........
................


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/library/numbers.rst

Modified: python/branches/release31-maint/Doc/library/numbers.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/numbers.rst	(original)
+++ python/branches/release31-maint/Doc/library/numbers.rst	Wed May  5 23:55:11 2010
@@ -29,11 +29,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