Skip to content

Commit 0bedc88

Browse files
committed
gh-96803: Export _PyInterpreterFrame_GetLine as a private API symbol
1 parent e37ac5f commit 0bedc88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_frame.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ _PyFrame_PushUnchecked(PyThreadState *tstate, PyFunctionObject *func)
222222
return new_frame;
223223
}
224224

225-
int _PyInterpreterFrame_GetLine(_PyInterpreterFrame *frame);
225+
PyAPI_FUNC(int) _PyInterpreterFrame_GetLine(_PyInterpreterFrame *frame);
226226

227227
static inline
228228
PyGenObject *_PyFrame_GetGenerator(_PyInterpreterFrame *frame)

0 commit comments

Comments
 (0)