mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Massive patch by Skip Montanaro to add ":name" to as many
PyArg_ParseTuple() format string arguments as possible.
This commit is contained in:
parent
a9b2b4be26
commit
43713e5a28
37 changed files with 272 additions and 272 deletions
|
@ -578,7 +578,7 @@ complex_conjugate(self, args)
|
|||
PyObject *args;
|
||||
{
|
||||
Py_complex c;
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
if (!PyArg_ParseTuple(args, ":conjugate"))
|
||||
return NULL;
|
||||
c = ((PyComplexObject *)self)->cval;
|
||||
c.imag = -c.imag;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue