summaryrefslogtreecommitdiff
path: root/Include/methodobject.h
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-22 23:15:44 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-08-22 23:15:44 +0200
commit9dae6156b5e3127cb8bfaa1bd36cecadaad5d60b (patch)
tree8c791586bd84fd42afbbc75aec2a32b2fdf6aef0 /Include/methodobject.h
parentde03c6d8066496680a1ea99ff9e67e28852b0007 (diff)
downloadcpython-9dae6156b5e3127cb8bfaa1bd36cecadaad5d60b.tar.gz
_PyFunction_FastCallDict() supports keyword args
Issue #27809: * Rename _PyFunction_FastCall() to _PyFunction_FastCallDict() * Rename _PyCFunction_FastCall() to _PyCFunction_FastCallDict() * _PyFunction_FastCallDict() now supports keyword arguments
Diffstat (limited to 'Include/methodobject.h')
-rw-r--r--Include/methodobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index 8dec00a8f5..107a650257 100644
--- a/Include/methodobject.h
+++ b/Include/methodobject.h
@@ -38,7 +38,7 @@ PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *);
PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *);
#ifndef Py_LIMITED_API
-PyAPI_FUNC(PyObject *) _PyCFunction_FastCall(PyObject *func,
+PyAPI_FUNC(PyObject *) _PyCFunction_FastCallDict(PyObject *func,
PyObject **args, int nargs,
PyObject *kwargs);
#endif