CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
ceval.h39 linesDownload Raw Back to cpython
1#ifndef Py_CPYTHON_CEVAL_H2#  error "this header file must not be included directly"3#endif4 5#ifdef __cplusplus6extern "C" {7#endif8 9PyAPI_FUNC(void) PyEval_SetProfile(Py_tracefunc, PyObject *);10PyAPI_DATA(int) _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);11PyAPI_FUNC(void) PyEval_SetTrace(Py_tracefunc, PyObject *);12PyAPI_FUNC(int) _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg);13PyAPI_FUNC(int) _PyEval_GetCoroutineOriginTrackingDepth(void);14PyAPI_FUNC(int) _PyEval_SetAsyncGenFirstiter(PyObject *);15PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFirstiter(void);16PyAPI_FUNC(int) _PyEval_SetAsyncGenFinalizer(PyObject *);17PyAPI_FUNC(PyObject *) _PyEval_GetAsyncGenFinalizer(void);18 19/* Helper to look up a builtin object */20PyAPI_FUNC(PyObject *) _PyEval_GetBuiltinId(_Py_Identifier *);21/* Look at the current frame's (if any) code's co_flags, and turn on22   the corresponding compiler flags in cf->cf_flags.  Return 1 if any23   flag was set, else return 0. */24PyAPI_FUNC(int) PyEval_MergeCompilerFlags(PyCompilerFlags *cf);25 26PyAPI_FUNC(PyObject *) _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int exc);27 28PyAPI_FUNC(void) _PyEval_SetSwitchInterval(unsigned long microseconds);29PyAPI_FUNC(unsigned long) _PyEval_GetSwitchInterval(void);30 31PyAPI_FUNC(Py_ssize_t) _PyEval_RequestCodeExtraIndex(freefunc);32 33PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);34PyAPI_FUNC(int) _PyEval_SliceIndexNotNone(PyObject *, Py_ssize_t *);35 36#ifdef __cplusplus37}38#endif39