MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Tools/gdb/libpython.py:984–988  ·  view source on GitHub ↗
(self, gdbval, cast_to=None)

Source from the content-addressed store, hash-verified

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 '''

Callers

nothing calls this directly

Calls 4

PyFramePtrClass · 0.85
fieldMethod · 0.80
__init__Method · 0.45
is_optimized_outMethod · 0.45

Tested by

no test coverage detected