Victor Stinner | f4b1e3d | 2019-11-04 19:48:34 +0100 | [diff] [blame] | 1 | #ifndef Py_CPYTHON_CEVAL_H |
| 2 | # error "this header file must not be included directly" |
| 3 | #endif |
| 4 | |
| 5 | #ifdef __cplusplus |
| 6 | extern "C" { |
| 7 | #endif |
| 8 | |
Victor Stinner | 51edf8a | 2019-11-16 01:04:44 +0100 | [diff] [blame] | 9 | PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *); |
| 10 | PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *); |
| 11 | PyAPI_FUNC(int) _PyEval_GetCoroutineOriginTrackingDepth(void); |
| 12 | PyAPI_FUNC(void) _PyEval_SetAsyncGenFirstiter(PyObject *); |
| 13 | PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFirstiter(void); |
| 14 | PyAPI_FUNC(void) _PyEval_SetAsyncGenFinalizer(PyObject *); |
| 15 | PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFinalizer(void); |
| 16 | |
| 17 | /* Helper to look up a builtin object */ |
| 18 | PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *); |
| 19 | /* Look at the current frame's (if any) code's co_flags, and turn on |
| 20 | the corresponding compiler flags in cf->cf_flags. Return 1 if any |
| 21 | flag was set, else return 0. */ |
| 22 | PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf); |
| 23 | |
Victor Stinner | 0b72b23 | 2020-03-12 23:18:39 +0100 | [diff] [blame] | 24 | PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, struct _frame *f, int exc); |
Victor Stinner | 51edf8a | 2019-11-16 01:04:44 +0100 | [diff] [blame] | 25 | |
| 26 | PyAPI_FUNC(void) _PyEval_SetSwitchInterval(unsigned long microseconds); |
| 27 | PyAPI_FUNC(unsigned long) _PyEval_GetSwitchInterval(void); |
| 28 | |
| 29 | PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc); |
| 30 | |
| 31 | PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *); |
| 32 | PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *); |
| 33 | |
Victor Stinner | f4b1e3d | 2019-11-04 19:48:34 +0100 | [diff] [blame] | 34 | #ifdef __cplusplus |
| 35 | } |
| 36 | #endif |