vidya7732/AI_Doctor_LLM_GenModel
0
1/* Limited C API of PyFrame API2 *3 * Include "frameobject.h" to get the PyFrameObject structure.4 */5 6#ifndef Py_PYFRAME_H7#define Py_PYFRAME_H8#ifdef __cplusplus9extern "C" {10#endif11 12typedef struct _frame PyFrameObject;13 14/* Return the line of code the frame is currently executing. */15PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);16 17PyAPI_FUNC(PyCodeObject *) PyFrame_GetCode(PyFrameObject *frame);18 19#ifdef __cplusplus20}21#endif22#endif /* !Py_PYFRAME_H */23 