diff options
author | Victor Stinner <vstinner@python.org> | 2022-03-18 10:16:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 10:16:55 (GMT) |
commit | 2217462bda1865a047d358306088682ee6a091ed (patch) | |
tree | c72f6a5a3920b320336119d819dc1d9a896dcb13 /Include | |
parent | d7a93cbf4b0d2d4eb8dbda3eb67d31a7cf4decf8 (diff) | |
download | cpython-2217462bda1865a047d358306088682ee6a091ed.zip cpython-2217462bda1865a047d358306088682ee6a091ed.tar.gz cpython-2217462bda1865a047d358306088682ee6a091ed.tar.bz2 |
bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)
Remove private empty _PyFrame_Fini() and _PyFrame_DebugMallocStats()
functions.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cpython/frameobject.h | 2 | ||||
-rw-r--r-- | Include/internal/pycore_frame.h | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/Include/cpython/frameobject.h b/Include/cpython/frameobject.h index ebaecbe..9b697fb 100644 --- a/Include/cpython/frameobject.h +++ b/Include/cpython/frameobject.h @@ -22,6 +22,4 @@ PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int); PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f); PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *); -PyAPI_FUNC(void) _PyFrame_DebugMallocStats(FILE *out); - PyAPI_FUNC(PyFrameObject *) PyFrame_GetBack(PyFrameObject *frame); diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h index 207983d..e2f551e 100644 --- a/Include/internal/pycore_frame.h +++ b/Include/internal/pycore_frame.h @@ -21,10 +21,6 @@ struct _frame { extern PyFrameObject* _PyFrame_New_NoTrack(PyCodeObject *code); -/* runtime lifecycle */ - -extern void _PyFrame_Fini(PyInterpreterState *interp); - /* other API */ |