diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-05 21:55:11 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-05 21:55:11 (GMT) |
commit | bc5f75cca215fa52cb6f5dec1c3045ecf6fe24cd (patch) | |
tree | c08bf3ab96142408ca0fff30909c03f6c8ca984d /Doc/library/numbers.rst | |
parent | dfc97de2467779da63ea414e724d3642f48b7ed1 (diff) | |
download | cpython-bc5f75cca215fa52cb6f5dec1c3045ecf6fe24cd.zip cpython-bc5f75cca215fa52cb6f5dec1c3045ecf6fe24cd.tar.gz cpython-bc5f75cca215fa52cb6f5dec1c3045ecf6fe24cd.tar.bz2 |
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.
........
................
Diffstat (limited to 'Doc/library/numbers.rst')
-rw-r--r-- | Doc/library/numbers.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst index 2b13a79..67c2f33 100644 --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -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() |