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_DATA(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg); 7 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); 8 PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg); 9 PyAPI_FUNC(int) _PyEval_GetCoroutineOriginTrackingDepth(void); 10 PyAPI_FUNC(int) _PyEval_SetAsyncGenFirstiter(PyObject *); 11 PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFirstiter(void); 12 PyAPI_FUNC(int) _PyEval_SetAsyncGenFinalizer(PyObject *); 13 PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFinalizer(void); 14 15 /* Helper to look up a builtin object */ 16 PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *); 17 /* Look at the current frame's (if any) code's co_flags, and turn on 18 the corresponding compiler flags in cf->cf_flags. Return 1 if any 19 flag was set, else return 0. */ 20 PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf); 21 22 PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int exc); 23 24 PyAPI_FUNC(void) _PyEval_SetSwitchInterval(unsigned long microseconds); 25 PyAPI_FUNC(unsigned long) _PyEval_GetSwitchInterval(void); 26 27 PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc); 28 29 PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *); 30 PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *); 31