diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-08-25 21:26:50 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-08-25 21:26:50 (GMT) |
commit | e90bdb19f22655b8ddad32006740c55d49237748 (patch) | |
tree | 3748a8f27c9b1958897a266b9529771b021ba58a /Include/funcobject.h | |
parent | bb1085915298a588d495561e5bc22b81552ecb7e (diff) | |
download | cpython-e90bdb19f22655b8ddad32006740c55d49237748.zip cpython-e90bdb19f22655b8ddad32006740c55d49237748.tar.gz cpython-e90bdb19f22655b8ddad32006740c55d49237748.tar.bz2 |
Issue #27830: Revert, remove _PyFunction_FastCallKeywords()
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r-- | Include/funcobject.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h index 5aff632..6b89c86 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -64,12 +64,6 @@ PyAPI_FUNC(PyObject *) _PyFunction_FastCallDict( PyObject **args, Py_ssize_t nargs, PyObject *kwargs); - -PyAPI_FUNC(PyObject *) _PyFunction_FastCallKeywords( - PyObject *func, - PyObject **stack, - Py_ssize_t nargs, - Py_ssize_t nkwargs); #endif /* Macros for direct access to these values. Type checks are *not* |