diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-01 08:17:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 08:17:57 (GMT) |
commit | b9a5522dd952125a99ff554f01f311cae25f5a91 (patch) | |
tree | b1a735deb13bd49a2b6deb89bb85cd02e035800d /Include/cpython | |
parent | d4bb38f82bf18b00db3129031ce4969b6f0caab9 (diff) | |
download | cpython-b9a5522dd952125a99ff554f01f311cae25f5a91.zip cpython-b9a5522dd952125a99ff554f01f311cae25f5a91.tar.gz cpython-b9a5522dd952125a99ff554f01f311cae25f5a91.tar.bz2 |
bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)
Move the private undocumented _PyEval_EvalFrameDefault() function to
the internal C API. The function now uses the _PyInterpreterFrame
type which is part of the internal C API.
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/ceval.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/cpython/ceval.h b/Include/cpython/ceval.h index 9d4eeaf..65aae2d 100644 --- a/Include/cpython/ceval.h +++ b/Include/cpython/ceval.h @@ -15,8 +15,6 @@ PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *); flag was set, else return 0. */ PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf); -PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, struct _PyInterpreterFrame *f, int exc); - PyAPI_FUNC(void) _PyEval_SetSwitchInterval(unsigned long microseconds); PyAPI_FUNC(unsigned long) _PyEval_GetSwitchInterval(void); |