From 8f2a337a80a283c66e1a4252839792fa229d2763 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 25 Feb 2022 16:07:14 +0100 Subject: bpo-45316: Move private functions to internal C API (GH-31579) Move the unexported private functions to the internal C API: * pycore_frame.h: _PyFrame_New_NoTrack() * pycore_function.h: _PyFunction_GetVersionForCurrentState() * pycore_genobject.h: _PyAsyncGenValueWrapperNew() * pycore_genobject.h: _PyCoro_GetAwaitableIter() * pycore_genobject.h: _PyGen_yf() --- Include/cpython/frameobject.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Include/cpython/frameobject.h') diff --git a/Include/cpython/frameobject.h b/Include/cpython/frameobject.h index e69209686b..ebaecbed1b 100644 --- a/Include/cpython/frameobject.h +++ b/Include/cpython/frameobject.h @@ -13,11 +13,6 @@ PyAPI_DATA(PyTypeObject) PyFrame_Type; PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *, PyObject *, PyObject *); -/* only internal use */ -PyFrameObject* -_PyFrame_New_NoTrack(PyCodeObject *code); - - /* The rest of the interface is specific for frame objects */ /* Conversions between "fast locals" and locals in dictionary */ -- cgit v1.2.1