CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
traceback.h23 linesDownload Raw Back to cpython
1#ifndef Py_CPYTHON_TRACEBACK_H2#  error "this header file must not be included directly"3#endif4 5#ifdef __cplusplus6extern "C" {7#endif8 9typedef struct _traceback {10    PyObject_HEAD11    struct _traceback *tb_next;12    PyFrameObject *tb_frame;13    int tb_lasti;14    int tb_lineno;15} PyTracebackObject;16 17PyAPI_FUNC(int) _Py_DisplaySourceLine(PyObject *, PyObject *, int, int);18PyAPI_FUNC(void) _PyTraceback_Add(const char *, const char *, int);19 20#ifdef __cplusplus21}22#endif23