diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-10-25 21:21:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 21:21:59 (GMT) |
commit | 3b87151879adb795c3c0372832c87da84ee93974 (patch) | |
tree | c1c37c825eb4652d722b492f34fa384ae0121e6f /Doc/library | |
parent | 4aa1fda7069642c21c1ee570c4ba44442a657e5e (diff) | |
download | cpython-3b87151879adb795c3c0372832c87da84ee93974.zip cpython-3b87151879adb795c3c0372832c87da84ee93974.tar.gz cpython-3b87151879adb795c3c0372832c87da84ee93974.tar.bz2 |
bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (GH-10098)
https://bugs.python.org/issue35038
(cherry picked from commit 1770d1c5121ed6c64d7072875738f97e07eede8a)
Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/inspect.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 6be28a2..891dedd 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -129,9 +129,6 @@ attributes: | | f_locals | local namespace seen by | | | | this frame | +-----------+-------------------+---------------------------+ -| | f_restricted | 0 or 1 if frame is in | -| | | restricted execution mode | -+-----------+-------------------+---------------------------+ | | f_trace | tracing function for this | | | | frame, or ``None`` | +-----------+-------------------+---------------------------+ |