Lines Matching refs:stack
251 self.commands_silent = {} # for each bp num, tells if the stack trace
271 self.stack = []
278 self.stack, self.curindex = self.get_stack(f, tb)
286 self.curframe = self.stack[self.curindex][0]
350 self.print_stack_entry(self.stack[self.curindex])
425 self.print_stack_entry(self.stack[self.curindex])
995 Print a stack trace, with the most recent frame at the bottom.
1004 assert 0 <= number < len(self.stack)
1006 self.curframe = self.stack[self.curindex][0]
1008 self.print_stack_entry(self.stack[self.curindex])
1014 stack trace (to an older frame).
1034 stack trace (to a newer frame).
1036 if self.curindex + 1 == len(self.stack):
1045 newframe = len(self.stack) - 1
1047 newframe = min(len(self.stack) - 1, self.curindex + count)
1152 if self.curindex + 1 != len(self.stack):
1161 # Do the jump, fix up our copy of the stack, and display the
1164 self.stack[self.curindex] = self.stack[self.curindex][0], arg
1165 self.print_stack_entry(self.stack[self.curindex])
1529 # Print a traceback starting at the top stack frame.
1532 # the Python interpreter's stack trace.
1535 # and down moves towards the most recent stack frame).
1539 for frame_lineno in self.stack:
1587 stack frame. The exclamation point can be omitted unless the