diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-12 11:30:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-12 11:30:02 (GMT) |
commit | b8d768b0199c55d408f5c8b86d14555aa7be9f98 (patch) | |
tree | d750281fae41ed4dfb784f2c142949d6c65380d1 /Objects/methodobject.c | |
parent | 2f462a68f9f3feccf4c4b13bd8743501fc0fd77e (diff) | |
download | cpython-b8d768b0199c55d408f5c8b86d14555aa7be9f98.zip cpython-b8d768b0199c55d408f5c8b86d14555aa7be9f98.tar.gz cpython-b8d768b0199c55d408f5c8b86d14555aa7be9f98.tar.bz2 |
Revert change f860b7a775c5
Revert change "Issue #27213: Reintroduce checks in _PyStack_AsDict()", pushed
by mistake.
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r-- | Objects/methodobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 487ccd7..90c473e 100644 --- a/Objects/methodobject.c +++ b/Objects/methodobject.c @@ -279,7 +279,7 @@ _PyCFunction_FastCallKeywords(PyObject *func, PyObject **stack, nkwargs = (kwnames == NULL) ? 0 : PyTuple_GET_SIZE(kwnames); if (nkwargs > 0) { - kwdict = _PyStack_AsDict(stack + nargs, nkwargs, kwnames, func); + kwdict = _PyStack_AsDict(stack + nargs, kwnames); if (kwdict == NULL) { return NULL; } |