diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-12-23 22:22:48 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-12-23 22:22:48 (GMT) |
commit | 5b859950d178fd8a900764be8c8087b25cfd6bad (patch) | |
tree | bd21ba36967b2ffa1ba0db08b26c5a7f39915576 | |
parent | 341a5ef28bc7cb3ab27a05ccf079918aad7de144 (diff) | |
download | cpython-5b859950d178fd8a900764be8c8087b25cfd6bad.zip cpython-5b859950d178fd8a900764be8c8087b25cfd6bad.tar.gz cpython-5b859950d178fd8a900764be8c8087b25cfd6bad.tar.bz2 |
Merged revisions 87455 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87455 | benjamin.peterson | 2010-12-23 16:17:42 -0600 (Thu, 23 Dec 2010) | 1 line
fix docstring
........
-rw-r--r-- | Lib/numbers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/numbers.py b/Lib/numbers.py index 540e7d5..2592643 100644 --- a/Lib/numbers.py +++ b/Lib/numbers.py @@ -63,7 +63,7 @@ class Complex(Number): @abstractproperty def imag(self): - """Retrieve the real component of this number. + """Retrieve the imaginary component of this number. This should subclass Real. """ |