This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Mark.Shannon, adamtj, asuffield, asvetlov, ncoghlan, neologix, pitrou, python-dev, rosslagerwall, scoder, serhiy.storchaka, vstinner
Date 2013-12-13.13:28:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAMpsgwav=VrjMS9euE5Dv=VmS4z+Yoy15n6MiiU1HpsDgEiWSw@mail.gmail.com>
In-reply-to <CAMpsgwZ4AykQ3KzmfqsR8tT42z9_CSnjTRMDaqZFN5OYF=qmFg@mail.gmail.com>
Content
2013/12/13 Victor Stinner <victor.stinner@gmail.com>:
> The header is not public, it is private.

Hum, I'm not clear. frameobject.h is not included in Python.h, so the
classic #include "Python.h" doesn't give you access to PyFrameObject
structure. You have to add a second #include "frameobject.h". All
definitions in this header are also surrounded by #ifndef
Py_LIMITED_API ... #endif, so the fields are not part of the stable
API.
History
Date User Action Args
2013-12-13 13:28:59vstinnersetrecipients: + vstinner, ncoghlan, pitrou, scoder, asvetlov, adamtj, neologix, Mark.Shannon, rosslagerwall, python-dev, serhiy.storchaka, asuffield
2013-12-13 13:28:59vstinnerlinkissue14432 messages
2013-12-13 13:28:58vstinnercreate