summaryrefslogtreecommitdiff
path: root/Include/funcobject.h
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-05-30 15:11:22 +0200
committerPetr Viktorin <encukou@gmail.com>2019-05-30 15:11:22 +0200
commit37788bc23f6f1ed0362b9b3b248daf296c024849 (patch)
treeadfc68a022f5e0ca5c06adf47d35292d802b5e77 /Include/funcobject.h
parent6d0b7470a4738a403ef48cfd50d9447e0f32f00c (diff)
downloadcpython-git-37788bc23f6f1ed0362b9b3b248daf296c024849.tar.gz
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r--Include/funcobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index 7ba000e1f1..e563a74a15 100644
--- a/Include/funcobject.h
+++ b/Include/funcobject.h
@@ -66,7 +66,7 @@ PyAPI_FUNC(PyObject *) _PyFunction_FastCallDict(
Py_ssize_t nargs,
PyObject *kwargs);
-PyAPI_FUNC(PyObject *) _PyFunction_FastCallKeywords(
+PyAPI_FUNC(PyObject *) _PyFunction_Vectorcall(
PyObject *func,
PyObject *const *stack,
size_t nargsf,