diff options
author | Petr Viktorin <encukou@gmail.com> | 2022-04-06 14:50:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-06 14:50:45 (GMT) |
commit | d79f118d044e9b4244b5dfda35448d39202d7f56 (patch) | |
tree | 97361543a287b31bb1f9d5ed039c368c4a47b8ae /Doc/c-api | |
parent | 14a9b4895b61bcd46ed968c43c5eec27670a0aac (diff) | |
download | cpython-d79f118d044e9b4244b5dfda35448d39202d7f56.zip cpython-d79f118d044e9b4244b5dfda35448d39202d7f56.tar.gz cpython-d79f118d044e9b4244b5dfda35448d39202d7f56.tar.bz2 |
bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-32196)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/frame.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/c-api/frame.rst b/Doc/c-api/frame.rst index 6d265e4..f6c682c 100644 --- a/Doc/c-api/frame.rst +++ b/Doc/c-api/frame.rst @@ -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. |