Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-93937, C API: Move PyFrame_GetBack() to Python.h #93938

Merged
merged 1 commit into from
Jun 19, 2022
Merged

gh-93937, C API: Move PyFrame_GetBack() to Python.h #93938

merged 1 commit into from
Jun 19, 2022

Commits on Jun 17, 2022

  1. gh-93937, C API: Move PyFrame_GetBack() to Python.h

    Move the follow functions and type from frameobject.h to pyframe.h,
    so the standard <Python.h> provide frame getter functions:
    
    * PyFrame_Check()
    * PyFrame_GetBack()
    * PyFrame_GetBuiltins()
    * PyFrame_GetGenerator()
    * PyFrame_GetGlobals()
    * PyFrame_GetLasti()
    * PyFrame_GetLocals()
    * PyFrame_Type
    
    Remove #include "frameobject.h" from many C files. It's no longer
    needed.
    vstinner committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    f1895fd View commit details
    Browse the repository at this point in the history