summaryrefslogtreecommitdiffstats
path: root/Python/context.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/context.c')
-rw-r--r--Python/context.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/Python/context.c b/Python/context.c
index 793dfa2..e44fef7 100644
--- a/Python/context.c
+++ b/Python/context.c
@@ -1284,17 +1284,6 @@ _PyContext_ClearFreeList(_PyFreeListState *freelist_state, int is_finalization)
}
-void
-_PyContext_Fini(_PyFreeListState *state)
-{
- // With Py_GIL_DISABLED:
- // the freelists for the current thread state have already been cleared.
-#ifndef Py_GIL_DISABLED
- _PyContext_ClearFreeList(state, 1);
-#endif
-}
-
-
PyStatus
_PyContext_Init(PyInterpreterState *interp)
{