diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-05 21:53:32 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-05 21:53:32 (GMT) |
commit | 6bb7c4f2efafb8d5a34f2e7a980342e2e4abfd49 (patch) | |
tree | 35669844cfa5ceddb61b6e53f7f396d37e54339e | |
parent | 8ff59b2f645d7a166b3e45be2fcf06e0eedeab45 (diff) | |
download | cpython-6bb7c4f2efafb8d5a34f2e7a980342e2e4abfd49.zip cpython-6bb7c4f2efafb8d5a34f2e7a980342e2e4abfd49.tar.gz cpython-6bb7c4f2efafb8d5a34f2e7a980342e2e4abfd49.tar.bz2 |
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.
........
-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 580127c..300a6f3 100644 --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -31,11 +31,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() |