summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r--Objects/methodobject.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 8f752c610c..6a37238d86 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -313,21 +313,6 @@ PyTypeObject PyCFunction_Type = {
0, /* tp_dict */
};
-/* Clear out the free list */
-
-int
-PyCFunction_ClearFreeList(void)
-{
- return 0;
-}
-
-void
-_PyCFunction_Fini(void)
-{
- (void)PyCFunction_ClearFreeList();
-}
-
-
/* Vectorcall functions for each of the PyCFunction calling conventions,
* except for METH_VARARGS (possibly combined with METH_KEYWORDS) which
* doesn't use vectorcall.