diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-06 11:58:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 11:58:07 (GMT) |
commit | 2b4f2f5fa4d1123c19bf0643cfa5a4fe8df4175c (patch) | |
tree | 8fd15ec78c5289f3eaf945d143d0c67ef16f5b95 /Include/cpython/pystate.h | |
parent | 1d3e743599673e9135d268fb72f0352d8ce23d97 (diff) | |
download | cpython-2b4f2f5fa4d1123c19bf0643cfa5a4fe8df4175c.zip cpython-2b4f2f5fa4d1123c19bf0643cfa5a4fe8df4175c.tar.gz cpython-2b4f2f5fa4d1123c19bf0643cfa5a4fe8df4175c.tar.bz2 |
Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)" (GH-32343)
* Revert "bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-32054)"
This reverts commit f877b40e3f7e0d97878884d80fbec879a85ab7e8.
* Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)"
This reverts commit b9a5522dd952125a99ff554f01f311cae25f5a91.
Diffstat (limited to 'Include/cpython/pystate.h')
-rw-r--r-- | Include/cpython/pystate.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Include/cpython/pystate.h b/Include/cpython/pystate.h index e346d74..1af21a2 100644 --- a/Include/cpython/pystate.h +++ b/Include/cpython/pystate.h @@ -259,6 +259,16 @@ PyAPI_FUNC(PyThreadState *) PyInterpreterState_ThreadHead(PyInterpreterState *); PyAPI_FUNC(PyThreadState *) PyThreadState_Next(PyThreadState *); PyAPI_FUNC(void) PyThreadState_DeleteCurrent(void); +/* Frame evaluation API */ + +typedef PyObject* (*_PyFrameEvalFunction)(PyThreadState *tstate, struct _PyInterpreterFrame *, int); + +PyAPI_FUNC(_PyFrameEvalFunction) _PyInterpreterState_GetEvalFrameFunc( + PyInterpreterState *interp); +PyAPI_FUNC(void) _PyInterpreterState_SetEvalFrameFunc( + PyInterpreterState *interp, + _PyFrameEvalFunction eval_frame); + PyAPI_FUNC(const PyConfig*) _PyInterpreterState_GetConfig(PyInterpreterState *interp); /* Get a copy of the current interpreter configuration. |