Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-11-19 09:50:40

0001 #ifndef Py_CPYTHON_CEVAL_H
0002 #  error "this header file must not be included directly"
0003 #endif
0004 
0005 PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);
0006 PyAPI_FUNC(void) PyEval_SetProfileAllThreads(Py_tracefunc, PyObject *);
0007 PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);
0008 PyAPI_FUNC(void) PyEval_SetTraceAllThreads(Py_tracefunc, PyObject *);
0009 
0010 /* Look at the current frame's (if any) code's co_flags, and turn on
0011    the corresponding compiler flags in cf->cf_flags.  Return 1 if any
0012    flag was set, else return 0. */
0013 PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf);
0014 
0015 PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, struct _PyInterpreterFrame *f, int exc);
0016 
0017 PyAPI_FUNC(Py_ssize_t) PyUnstable_Eval_RequestCodeExtraIndex(freefunc);
0018 // Old name -- remove when this API changes:
0019 _Py_DEPRECATED_EXTERNALLY(3.12) static inline Py_ssize_t
0020 _PyEval_RequestCodeExtraIndex(freefunc f) {
0021     return PyUnstable_Eval_RequestCodeExtraIndex(f);
0022 }
0023 
0024 PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
0025 PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *);