|
|
|||
File indexing completed on 2025-11-19 09:50:42
0001 #ifndef Py_CPYTHON_TRACEBACK_H 0002 # error "this header file must not be included directly" 0003 #endif 0004 0005 typedef struct _traceback PyTracebackObject; 0006 0007 struct _traceback { 0008 PyObject_HEAD 0009 PyTracebackObject *tb_next; 0010 PyFrameObject *tb_frame; 0011 int tb_lasti; 0012 int tb_lineno; 0013 };
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|