mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
bpo-29924: Remove useless argument (#854)
This commit is contained in:
parent
d702c50049
commit
d67a103702
1 changed files with 1 additions and 1 deletions
|
|
@ -550,7 +550,7 @@ _PyMethodDef_RawFastCallDict(PyMethodDef *method, PyObject *self, PyObject **arg
|
||||||
no_keyword_error:
|
no_keyword_error:
|
||||||
PyErr_Format(PyExc_TypeError,
|
PyErr_Format(PyExc_TypeError,
|
||||||
"%.200s() takes no keyword arguments",
|
"%.200s() takes no keyword arguments",
|
||||||
method->ml_name, nargs);
|
method->ml_name);
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
Py_LeaveRecursiveCall();
|
Py_LeaveRecursiveCall();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue