Skip to content

Commit c1ae254

Browse files
committed
#19068: merge with 3.3.
2 parents b32a811 + 488d244 commit c1ae254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/complexobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ complex_conjugate(PyObject *self)
681681
PyDoc_STRVAR(complex_conjugate_doc,
682682
"complex.conjugate() -> complex\n"
683683
"\n"
684-
"Returns the complex conjugate of its argument. (3-4j).conjugate() == 3+4j.");
684+
"Return the complex conjugate of its argument. (3-4j).conjugate() == 3+4j.");
685685

686686
static PyObject *
687687
complex_getnewargs(PyComplexObject *v)
@@ -693,7 +693,7 @@ complex_getnewargs(PyComplexObject *v)
693693
PyDoc_STRVAR(complex__format__doc,
694694
"complex.__format__() -> str\n"
695695
"\n"
696-
"Converts to a string according to format_spec.");
696+
"Convert to a string according to format_spec.");
697697

698698
static PyObject *
699699
complex__format__(PyObject* self, PyObject* args)

0 commit comments

Comments
 (0)