(self, frame, tbid)
| 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") |
no test coverage detected