Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 69c37a6918ec22db14594bfe9e53d663e4700de0 authored by Pablo Galindo on 02 December 2020, 03:12:43 UTC
bpo-41625: Include 'socket.h' in aix
Tip revision: 69c37a6
traceback.h
#ifndef Py_CPYTHON_TRACEBACK_H
#  error "this header file must not be included directly"
#endif

typedef struct _traceback {
    PyObject_HEAD
    struct _traceback *tb_next;
    PyFrameObject *tb_frame;
    int tb_lasti;
    int tb_lineno;
} PyTracebackObject;

PyAPI_FUNC(int) _Py_DisplaySourceLine(PyObject *, PyObject *, int, int);
PyAPI_FUNC(void) _PyTraceback_Add(const char *, const char *, int);
back to top