From 7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba Mon Sep 17 00:00:00 2001 From: Jeroen Demeyer Date: Fri, 5 Jul 2019 17:43:23 +0200 Subject: bpo-37151: remove _PyMethodDef_RawFastCall* functions (GH-14603) --- Include/methodobject.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'Include/methodobject.h') diff --git a/Include/methodobject.h b/Include/methodobject.h index b43847110e..ab66b03f7a 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -95,20 +95,6 @@ typedef struct { PyObject *m_weakreflist; /* List of weak references */ vectorcallfunc vectorcall; } PyCFunctionObject; - -PyAPI_FUNC(PyObject *) _PyMethodDef_RawFastCallDict( - PyMethodDef *method, - PyObject *self, - PyObject *const *args, - Py_ssize_t nargs, - PyObject *kwargs); - -PyAPI_FUNC(PyObject *) _PyMethodDef_RawFastCallKeywords( - PyMethodDef *method, - PyObject *self, - PyObject *const *args, - Py_ssize_t nargs, - PyObject *kwnames); #endif PyAPI_FUNC(int) PyCFunction_ClearFreeList(void); -- cgit v1.2.1