Skip to content

Commit 4e6e7da

Browse files
committed
Allow JIT to find _PyThreadState_PopFrame.
1 parent e1da7df commit 4e6e7da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_frame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ _PyThreadState_HasStackSpace(PyThreadState *tstate, int size)
264264
extern _PyInterpreterFrame *
265265
_PyThreadState_PushFrame(PyThreadState *tstate, size_t size);
266266

267-
void _PyThreadState_PopFrame(PyThreadState *tstate, _PyInterpreterFrame *frame);
267+
PyAPI_FUNC(void) _PyThreadState_PopFrame(PyThreadState *tstate, _PyInterpreterFrame *frame);
268268

269269
/* Pushes a frame without checking for space.
270270
* Must be guarded by _PyThreadState_HasStackSpace()

0 commit comments

Comments
 (0)