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 /Include/abstract.h | |
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 'Include/abstract.h')
-rw-r--r-- | Include/abstract.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index 8748367..a94ce66 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -275,9 +275,7 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ PyAPI_FUNC(PyObject *) _PyStack_AsDict( PyObject **values, - Py_ssize_t nkwargs, - PyObject *kwnames, - PyObject *func); + PyObject *kwnames); /* Convert (args, nargs, kwargs) into a (stack, nargs, kwnames). |