Lines Matching refs:stack
100 self.commands_silent = {} # for each bp num, tells if the stack trace
113 self.stack = []
119 self.stack, self.curindex = self.get_stack(f, t)
120 self.curframe = self.stack[self.curindex][0]
177 self.print_stack_entry(self.stack[self.curindex])
209 self.print_stack_entry(self.stack[self.curindex])
639 self.curframe = self.stack[self.curindex][0]
641 self.print_stack_entry(self.stack[self.curindex])
646 if self.curindex + 1 == len(self.stack):
650 self.curframe = self.stack[self.curindex][0]
652 self.print_stack_entry(self.stack[self.curindex])
694 if self.curindex + 1 != len(self.stack):
703 # Do the jump, fix up our copy of the stack, and display the
706 self.stack[self.curindex] = self.stack[self.curindex][0], arg
707 self.print_stack_entry(self.stack[self.curindex])
878 # Print a traceback starting at the top stack frame.
881 # the Python interpreter's stack trace.
884 # and down moves towards the most recent stack frame).
888 for frame_lineno in self.stack:
920 Print a stack trace, with the most recent frame at the bottom.
931 Move the current frame one level down in the stack trace
939 Move the current frame one level up in the stack trace
1087 the current stack frame.