Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-40421: Add pyframe.h header file (GH-19755) | Victor Stinner | 2020-04-28 | 1 | -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 Stinner | 2019-05-20 | 1 | -0/+22 |
Add new Include/cpython/traceback.h and Include/internal/traceback.h header files. |