summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.7.rst
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2023-12-05 19:27:59 (GMT)
committerGitHub <noreply@github.com>2023-12-05 19:27:59 (GMT)
commitd109f637c048c2b5fc95dc7fdfd50f8ac41a7747 (patch)
tree2b8058dcc8b981de885b29f7e537fbd53a3702aa /Doc/whatsnew/3.7.rst
parentc2e2df83560a3d4cb602f6d57cb70ac8aad7f9e6 (diff)
downloadcpython-d109f637c048c2b5fc95dc7fdfd50f8ac41a7747.zip
cpython-d109f637c048c2b5fc95dc7fdfd50f8ac41a7747.tar.gz
cpython-d109f637c048c2b5fc95dc7fdfd50f8ac41a7747.tar.bz2
gh-101100: Properly document frame object attributes (#112735)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r--Doc/whatsnew/3.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index a7d5c3d..99f280a 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -1891,7 +1891,7 @@ Other CPython Implementation Changes
* Trace hooks may now opt out of receiving the ``line`` and opt into receiving
the ``opcode`` events from the interpreter by setting the corresponding new
- ``f_trace_lines`` and ``f_trace_opcodes`` attributes on the
+ :attr:`~frame.f_trace_lines` and :attr:`~frame.f_trace_opcodes` attributes on the
frame being traced. (Contributed by Nick Coghlan in :issue:`31344`.)
* Fixed some consistency problems with namespace package module attributes.