gooderp18绿色标准版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
444B

  1. #ifndef Py_CPYTHON_TRACEBACK_H
  2. # error "this header file must not be included directly"
  3. #endif
  4. typedef struct _traceback PyTracebackObject;
  5. struct _traceback {
  6. PyObject_HEAD
  7. PyTracebackObject *tb_next;
  8. PyFrameObject *tb_frame;
  9. int tb_lasti;
  10. int tb_lineno;
  11. };
  12. PyAPI_FUNC(int) _Py_DisplaySourceLine(PyObject *, PyObject *, int, int, int *, PyObject **);
  13. PyAPI_FUNC(void) _PyTraceback_Add(const char *, const char *, int);
上海开阖软件有限公司 沪ICP备12045867号-1