mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
#19068: merge with 3.3.
This commit is contained in:
commit
c1ae254717
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue