0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

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.
........
This commit is contained in:
Mark Dickinson 2010-05-05 21:54:18 +00:00
parent de629d46f2
commit 55f8ae28a1

View File

@ -29,11 +29,11 @@ The numeric tower
.. 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()