From: Stéphane Wirtel Date: Thu, 25 Oct 2018 21:13:45 +0000 (+0200) Subject: bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (GH-10098) X-Git-Tag: v3.8.0a1~676 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1770d1c5121ed6c64d7072875738f97e07eede8a;p=thirdparty%2FPython%2Fcpython.git bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (GH-10098) https://bugs.python.org/issue35038 --- diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 523a5f34179b..50cd00367a1b 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -132,9 +132,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`` | +-----------+-------------------+---------------------------+ diff --git a/Misc/NEWS.d/next/Documentation/2018-10-25-17-45-09.bpo-35038.2eVOYS.rst b/Misc/NEWS.d/next/Documentation/2018-10-25-17-45-09.bpo-35038.2eVOYS.rst new file mode 100644 index 000000000000..3558cf47d5d5 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2018-10-25-17-45-09.bpo-35038.2eVOYS.rst @@ -0,0 +1,2 @@ +Fix the documentation about an unexisting `f_restricted` attribute in the +frame object. Patch by Stéphane Wirtel