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

Method show_stack_frame

Lib/idlelib/debugger.py:491–494  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

489 self.show_source(index)
490
491 def show_stack_frame(self):
492 index = self.listbox.index("active")
493 if 0 <= index < len(self.stack):
494 self.gui.show_frame(self.stack[index])
495
496 def show_source(self, index):
497 if not (0 <= index < len(self.stack)):

Callers

nothing calls this directly

Calls 2

show_frameMethod · 0.80
indexMethod · 0.45

Tested by

no test coverage detected