diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-07-23 10:39:51 (GMT) |
---|---|---|
committer | Ćukasz Langa <lukasz@langa.pl> | 2019-07-23 10:39:51 (GMT) |
commit | bf8e82f976b37856c7d35cdf88a238cb6f57fe65 (patch) | |
tree | eef98efc9b9f0206ff2ee927e697434003405796 /Include | |
parent | 5dab5e7d24c790d54b8d1eca0568e798bfda2c68 (diff) | |
download | cpython-bf8e82f976b37856c7d35cdf88a238cb6f57fe65.zip cpython-bf8e82f976b37856c7d35cdf88a238cb6f57fe65.tar.gz cpython-bf8e82f976b37856c7d35cdf88a238cb6f57fe65.tar.bz2 |
[3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/descrobject.h | 3 | ||||
-rw-r--r-- | Include/methodobject.h | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Include/descrobject.h b/Include/descrobject.h index d711485..ead269d 100644 --- a/Include/descrobject.h +++ b/Include/descrobject.h @@ -91,9 +91,6 @@ PyAPI_FUNC(PyObject *) PyDescr_NewMember(PyTypeObject *, PyAPI_FUNC(PyObject *) PyDescr_NewGetSet(PyTypeObject *, struct PyGetSetDef *); #ifndef Py_LIMITED_API - -PyAPI_FUNC(PyObject *) _PyMethodDescr_Vectorcall( - PyObject *descrobj, PyObject *const *args, size_t nargsf, PyObject *kwnames); PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *, struct wrapperbase *, void *); #define PyDescr_IsData(d) (Py_TYPE(d)->tp_descr_set != NULL) diff --git a/Include/methodobject.h b/Include/methodobject.h index e92adde..ba3b887 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -46,11 +46,6 @@ PyAPI_FUNC(PyObject *) _PyCFunction_FastCallDict(PyObject *func, PyObject *const *args, Py_ssize_t nargs, PyObject *kwargs); - -PyAPI_FUNC(PyObject *) _PyCFunction_Vectorcall(PyObject *func, - PyObject *const *stack, - size_t nargsf, - PyObject *kwnames); #endif struct PyMethodDef { |