summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorJeroen Demeyer <J.Demeyer@UGent.be>2019-07-05 15:43:23 (GMT)
committerPetr Viktorin <encukou@gmail.com>2019-07-05 15:43:22 (GMT)
commit7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba (patch)
treedc754a4c9d50a2c8e595b330637c9f2d8925cb77 /Include
parent8fbeb14312b4c1320d31ad86e69749515879d1c3 (diff)
downloadcpython-7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba.zip
cpython-7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba.tar.gz
cpython-7b57c03a7cb63ccfb2b8dfa82a1bf169268d80ba.tar.bz2
bpo-37151: remove _PyMethodDef_RawFastCall* functions (GH-14603)
Diffstat (limited to 'Include')
-rw-r--r--Include/methodobject.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h
index b438471..ab66b03 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);