bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)

This commit is contained in:
Jeroen Demeyer 2019-05-30 15:11:22 +02:00 committed by Petr Viktorin
parent 6d0b7470a4
commit 37788bc23f
9 changed files with 19 additions and 19 deletions

View file

@ -92,7 +92,7 @@ PyAPI_FUNC(PyObject *) PyDescr_NewGetSet(PyTypeObject *,
struct PyGetSetDef *);
#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *) _PyMethodDescr_FastCallKeywords(
PyAPI_FUNC(PyObject *) _PyMethodDescr_Vectorcall(
PyObject *descrobj, PyObject *const *args, size_t nargsf, PyObject *kwnames);
PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *,
struct wrapperbase *, void *);