diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-28 16:32:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 16:32:48 +0200 |
commit | 7c59d7c9860cdbaf4a9c26c9142aebd3259d046e (patch) | |
tree | 25d14f4febac1b124878b5875a936b47c6706771 /Include/Python.h | |
parent | 5da352616fb8290e3c2c0245f553280824093c6a (diff) | |
download | cpython-git-7c59d7c9860cdbaf4a9c26c9142aebd3259d046e.tar.gz |
bpo-40421: Add pyframe.h header file (GH-19755)
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.
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index 7fdb9df706..868e31bfa4 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -114,6 +114,7 @@ #include "classobject.h" #include "fileobject.h" #include "pycapsule.h" +#include "pyframe.h" #include "traceback.h" #include "sliceobject.h" #include "cellobject.h" |