bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (GH-10098)
https://bugs.python.org/issue35038
This commit is contained in:
parent
9e95eb0d60
commit
1770d1c512
|
@ -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`` |
|
||||
+-----------+-------------------+---------------------------+
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Fix the documentation about an unexisting `f_restricted` attribute in the
|
||||
frame object. Patch by Stéphane Wirtel
|
Loading…
Reference in New Issue