(self, gdbval, cast_to=None)
| 982 | _typename = 'PyFrameObject' |
| 983 | |
| 984 | def __init__(self, gdbval, cast_to=None): |
| 985 | PyObjectPtr.__init__(self, gdbval, cast_to) |
| 986 | |
| 987 | if not self.is_optimized_out(): |
| 988 | self._frame = PyFramePtr(self.field('f_frame')) |
| 989 | |
| 990 | def iter_locals(self): |
| 991 | ''' |
nothing calls this directly
no test coverage detected