/opt/alt/python39/include/python3.9/cpython
NameSizeModeActions
abstract.h142000644editdlrm
bytearrayobject.h7690644editdlrm
bytesobject.h43480644editdlrm
ceval.h15370644editdlrm
code.h69890644editdlrm
dictobject.h37970644editdlrm
fileobject.h7210644editdlrm
fileutils.h40040644editdlrm
frameobject.h30590644editdlrm
import.h14730644editdlrm
initconfig.h169790644editdlrm
interpreteridobject.h4560644editdlrm
listobject.h13640644editdlrm
methodobject.h13990644editdlrm
object.h193580644editdlrm
objimpl.h44560644editdlrm
pyerrors.h51010644editdlrm
pylifecycle.h20960644editdlrm
pymem.h35110644editdlrm
pystate.h101340644editdlrm
sysmodule.h5750644editdlrm
traceback.h4730644editdlrm
tupleobject.h10360644editdlrm
unicodeobject.h469830644editdlrm
Edit: /opt/alt/python39/include/python3.9/cpython/traceback.h (473B)
#ifndef Py_CPYTHON_TRACEBACK_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #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); #ifdef __cplusplus } #endif