summaryrefslogtreecommitdiff
path: root/Include/funcobject.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-25 00:29:32 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-08-25 00:29:32 +0200
commit577e1f8cb41b76ea763910a47abf42a1952ddec3 (patch)
treec813887a0af4c5b7312b2e835677546584c067ea /Include/funcobject.h
parent53868aaabb154c11bf666b31662bb4ae8bc6ec79 (diff)
downloadcpython-git-577e1f8cb41b76ea763910a47abf42a1952ddec3.tar.gz
Add _PyObject_FastCallKeywords()
Issue #27830: Similar to _PyObject_FastCallDict(), but keyword arguments are also passed in the same C array than positional arguments, rather than being passed as a Python dict.
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r--Include/funcobject.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index 6b89c86936..5aff6325a7 100644
--- a/Include/funcobject.h
+++ b/Include/funcobject.h
@@ -64,6 +64,12 @@ 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*