diff options
author | Victor Stinner <vstinner@python.org> | 2022-03-23 12:19:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 12:19:13 (GMT) |
commit | b0f886d1bca499db1118a60b707923fa8e157073 (patch) | |
tree | 2167d042525ab82c3023ff56feafb557f6b7cb57 /Doc/c-api/veryhigh.rst | |
parent | 3ac4e783e077ffd7b51c6acc1591002974644051 (diff) | |
download | cpython-b0f886d1bca499db1118a60b707923fa8e157073.zip cpython-b0f886d1bca499db1118a60b707923fa8e157073.tar.gz cpython-b0f886d1bca499db1118a60b707923fa8e157073.tar.bz2 |
bpo-46836: Add Doc/c-api/frame.rst (GH-32051)
Reorganize the documentation of the PyFrameObject C API.
Diffstat (limited to 'Doc/c-api/veryhigh.rst')
-rw-r--r-- | Doc/c-api/veryhigh.rst | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst index 2f5720d..7bd47bb 100644 --- a/Doc/c-api/veryhigh.rst +++ b/Doc/c-api/veryhigh.rst @@ -286,20 +286,6 @@ the same library that the Python runtime is using. <keyword-only_parameter>` arguments and a closure tuple of cells. -.. c:type:: PyFrameObject - - The C structure of the objects used to describe frame objects. - - The structure is only part of the internal C API: fields should not be - access directly. Use getter functions like :c:func:`PyFrame_GetCode` and - :c:func:`PyFrame_GetBack`. - - Debuggers and profilers can use the limited C API to access this structure. - - .. versionchanged:: 3.11 - The structure moved to the internal C API headers. - - .. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f) Evaluate an execution frame. This is a simplified interface to |