From: Benjamin Peterson Date: Thu, 23 Dec 2010 22:22:48 +0000 (+0000) Subject: Merged revisions 87455 via svnmerge from X-Git-Tag: v2.7.2rc1~444 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b859950d178fd8a900764be8c8087b25cfd6bad;p=python 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 ........ --- diff --git a/Lib/numbers.py b/Lib/numbers.py index 540e7d5910..2592643c13 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. """