1 #ifndef Py_CPYTHON_CEVAL_H
2 # error "this header file must not be included directly"
3 #endif
4
5 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
6 PyAPI_FUNC(void) PyEval_SetProfileAllThreads(Py_tracefunc, PyObject *);
7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
8 PyAPI_FUNC(void) PyEval_SetTraceAllThreads(Py_tracefunc, PyObject *);
9
10 /* Look at the current frame's (if any) code's co_flags, and turn on
11 the corresponding compiler flags in cf->cf_flags. Return 1 if any
12 flag was set, else return 0. */
13 PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf);
14
15 PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, struct _PyInterpreterFrame *f, int exc);
16
17 PyAPI_FUNC(Py_ssize_t) PyUnstable_Eval_RequestCodeExtraIndex(freefunc);
18 // Old name -- remove when this API changes:
19 _Py_DEPRECATED_EXTERNALLY(3.12) static inline Py_ssize_t
_PyEval_RequestCodeExtraIndex(freefunc f)20 _PyEval_RequestCodeExtraIndex(freefunc f) {
21 return PyUnstable_Eval_RequestCodeExtraIndex(f);
22 }
23
24 PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
25 PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *);
26