cpython: e67e685a1301 (original) (raw)
Mercurial > cpython
changeset 103714:e67e685a1301
Fix warning in _PyCFunction_FastCallKeywords() Issue #28105. [#28105]
Victor Stinner victor.stinner@gmail.com | |
---|---|
date | Mon, 12 Sep 2016 15:33:26 -0400 |
parents | da485c6c744e |
children | 9183469f0232 |
files | Objects/methodobject.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-)[+] [-] Objects/methodobject.c 3 |
line wrap: on
line diff
--- a/Objects/methodobject.c +++ b/Objects/methodobject.c @@ -273,7 +273,7 @@ PyObject * Py_ssize_t nargs, PyObject *kwnames) { PyObject *kwdict, *result;
assert(PyCFunction_Check(func)); assert(nargs >= 0); @@ -282,7 +282,6 @@ PyObject / kwnames must only contains str strings, no subclass, and all keys must be unique */