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

Method get_stack

Lib/idlelib/debugger_r.py:310–314  ·  view source on GitHub ↗
(self, frame, tbid)

Source from the content-addressed store, hash-verified

308 self.shell.interp.active_seq = seq
309
310 def get_stack(self, frame, tbid):
311 # passing frame and traceback IDs, not the objects themselves
312 stack, i = self.call("get_stack", frame._fid, tbid)
313 stack = [(FrameProxy(self.conn, fid), k) for fid, k in stack]
314 return stack, i
315
316 def set_continue(self):
317 self.call("set_continue")

Callers 3

interactionMethod · 0.45
show_stackMethod · 0.45
get_stackMethod · 0.45

Calls 2

callMethod · 0.95
FrameProxyClass · 0.85

Tested by

no test coverage detected