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/abstract.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/abstract.h')
-rw-r--r-- | Include/abstract.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Include/abstract.h b/Include/abstract.h index ebad84b..f838b50 100644 --- a/Include/abstract.h +++ b/Include/abstract.h @@ -292,23 +292,6 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ #define _PyObject_CallArg1(func, arg) \ _PyObject_FastCall((func), &(arg), 1) - /* Call the callable object func with the "fast call" calling convention: - args is a C array for positional arguments followed by (key, value) - pairs for keyword arguments. - - nargs is the number of positional parameters at the beginning of stack. - nkwargs is the number of (key, value) pairs at the end of stack. - - If nargs and nkwargs are equal to zero, stack can be NULL. - - Return the result on success. Raise an exception and return NULL on - error. */ - PyAPI_FUNC(PyObject *) _PyObject_FastCallKeywords( - PyObject *func, - PyObject **stack, - Py_ssize_t nargs, - Py_ssize_t nkwargs); - PyAPI_FUNC(PyObject *) _PyObject_Call_Prepend(PyObject *func, PyObject *obj, PyObject *args, PyObject *kwargs); |