diff options
author | Steve Dower <steve.dower@python.org> | 2022-07-17 15:11:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 15:11:24 (GMT) |
commit | 044a593cbbe1639e906e06c47504dd1020ddfee4 (patch) | |
tree | ad204fabeee64b9015959c73398a9e41f51213eb /Doc | |
parent | 5c19ddab65f91d190ec94c494e95c5d551a45efc (diff) | |
download | cpython-044a593cbbe1639e906e06c47504dd1020ddfee4.zip cpython-044a593cbbe1639e906e06c47504dd1020ddfee4.tar.gz cpython-044a593cbbe1639e906e06c47504dd1020ddfee4.tar.bz2 |
gh-91348: Restore frame argument to sys._getframe audit event (GH-94928)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index d9799f8..e10efb1 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -774,7 +774,7 @@ always available. that is deeper than the call stack, :exc:`ValueError` is raised. The default for *depth* is zero, returning the frame at the top of the call stack. - .. audit-event:: sys._getframe "" sys._getframe + .. audit-event:: sys._getframe frame sys._getframe .. impl-detail:: |