Skip to content

bpo-47115: Document which parts of structs are in limited API/stable ABI #32196

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

Merged
merged 7 commits into from
Apr 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Doc/c-api/frame.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ Frame Objects

The C structure of the objects used to describe frame objects.

The structure is not part of the C API.
There are no public members in this structure.

.. versionchanged:: 3.11
The structure moved to the internal C API headers.
The members of this structure were removed from the public C API.
Refer to the :ref:`What's New entry <pyframeobject-3.11-hiding>`
for details.

The :c:func:`PyEval_GetFrame` and :c:func:`PyThreadState_GetFrame` functions
can be used to get a frame object.
Expand Down
Loading