summaryrefslogtreecommitdiff
path: root/Include/cpython/traceback.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-40421: Add pyframe.h header file (GH-19755)Victor Stinner2020-04-281-1/+1
| | | | | | | | | | Add a new separated pyframe.h header file of the PyFrame public C API: it is included by Python.h. Add PyFrame_GetLineNumber() to the limited C API. Replace "struct _frame" with "PyFrameObject" in header files. PyFrameObject is now defined as struct _frame by pyframe.h which is included early enough in Python.h.
* bpo-35134: Split traceback.h header (GH-13430)Victor Stinner2019-05-201-0/+22
Add new Include/cpython/traceback.h and Include/internal/traceback.h header files.