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/whatsnew | |
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/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.11.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 938a573..fe6c2e2 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -968,10 +968,8 @@ Porting to Python 3.11 * ``f_stackdepth``: removed. * ``f_state``: no public API (renamed to ``f_frame.f_state``). * ``f_trace``: no public API. - * ``f_trace_lines``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_lines")`` - (it also be modified). - * ``f_trace_opcodes``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_opcodes")`` - (it also be modified). + * ``f_trace_lines``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_lines")``. + * ``f_trace_opcodes``: use ``PyObject_GetAttrString((PyObject*)frame, "f_trace_opcodes")``. * ``f_localsplus``: no public API (renamed to ``f_frame.localsplus``). * ``f_valuestack``: removed. |