Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
GH-96803: Move PyUnstable_InterpreterFrame_GetCode() to Python.h#107188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Declare the following 3 PyUnstable functions inInclude/cpython/pyframe.h rather than Include/cpython/frameobject.h,so they are now provided by the standard "#include <Python.h>".
The commita0df9ee added these 3 functions to "frameobject.h". The problem is that this header file is not included by Python.h. This change moves the functions to "pyframe.h" which is included by Python.h. |
Thanks@vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
pythonGH-107188)Declare the following 3 PyUnstable functions inInclude/cpython/pyframe.h rather than Include/cpython/frameobject.h,so they are now provided by the standard "GH-include <Python.h>".(cherry picked from commit837fa5c)Co-authored-by: Victor Stinner <vstinner@python.org>
bedevere-bot commentedJul 24, 2023
GH-107195 is a backport of this pull request to the3.12 branch. |
….h (GH-107188) (#107195)GH-96803: Move PyUnstable_InterpreterFrame_GetCode() to Python.h (GH-107188)Declare the following 3 PyUnstable functions inInclude/cpython/pyframe.h rather than Include/cpython/frameobject.h,so they are now provided by the standard "GH-include <Python.h>".(cherry picked from commit837fa5c)Co-authored-by: Victor Stinner <vstinner@python.org>
python#107188)Declare the following 3 PyUnstable functions inInclude/cpython/pyframe.h rather than Include/cpython/frameobject.h,so they are now provided by the standard "#include <Python.h>".
Uh oh!
There was an error while loading.Please reload this page.
Declare the following 3 PyUnstable functions in
Include/cpython/pyframe.h rather than Include/cpython/frameobject.h, so they are now provided by the standard "#include <Python.h>".