diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-12-05 19:34:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 19:34:06 (GMT) |
commit | ef92e9e666242e1712a3f5201747182c0f8e978e (patch) | |
tree | 092ae417f1bbbd94481f4c75a82922f041003024 /Doc/library/inspect.rst | |
parent | e63bb9caf08d7f36372f258efa287e676a161587 (diff) | |
download | cpython-ef92e9e666242e1712a3f5201747182c0f8e978e.zip cpython-ef92e9e666242e1712a3f5201747182c0f8e978e.tar.gz cpython-ef92e9e666242e1712a3f5201747182c0f8e978e.tar.bz2 |
[3.12] gh-101100: Properly document frame object attributes (GH-112735) (#112772)
gh-101100: Properly document frame object attributes (GH-112735)
(cherry picked from commit d109f637c048c2b5fc95dc7fdfd50f8ac41a7747)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index bf5e6ea..56a08bf 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -1588,8 +1588,8 @@ the following flags: .. data:: CO_NEWLOCALS - If set, a new dict will be created for the frame's ``f_locals`` when - the code object is executed. + If set, a new dict will be created for the frame's :attr:`~frame.f_locals` + when the code object is executed. .. data:: CO_VARARGS |