diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-10-06 00:39:44 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-10-06 00:39:44 +0300 |
commit | b90ebcb8f7c144228f5c560ee3716411808aed0a (patch) | |
tree | 46a4c08fa6703a4ae80c1dce1fc8507c8223effd /Objects/complexobject.c | |
parent | 695bf83dc3e225de29899db9dbef23a7a8be1252 (diff) | |
parent | 87ee0bd4d9e84a21cfb618bd0a7f5771aca6fbc6 (diff) | |
download | cpython-b90ebcb8f7c144228f5c560ee3716411808aed0a.tar.gz |
#19068: merge with 3.3.
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 5747450adb..64e7b44577 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -681,7 +681,7 @@ complex_conjugate(PyObject *self) PyDoc_STRVAR(complex_conjugate_doc, "complex.conjugate() -> complex\n" "\n" -"Returns the complex conjugate of its argument. (3-4j).conjugate() == 3+4j."); +"Return the complex conjugate of its argument. (3-4j).conjugate() == 3+4j."); static PyObject * complex_getnewargs(PyComplexObject *v) @@ -693,7 +693,7 @@ complex_getnewargs(PyComplexObject *v) PyDoc_STRVAR(complex__format__doc, "complex.__format__() -> str\n" "\n" -"Converts to a string according to format_spec."); +"Convert to a string according to format_spec."); static PyObject * complex__format__(PyObject* self, PyObject* args) |