Home | History | Annotate | Download | only in Lib

Lines Matching refs:breakpoint

178         self.commands = {} # associates a command list to breakpoint numbers
185 self.commands_bnum = None # The breakpoint number for which we are
264 """Call every command that was set for the current active breakpoint
269 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
415 a breakpoint command list definition.
481 # Complete a breakpoint number. (This would be more helpful if we could
483 # of the breakpoint.)
484 return [str(i) for i, bp in enumerate(bdb.Breakpoint.bpbynumber)
523 Specify a list of commands for breakpoint number bpnumber.
526 The commands are executed when the breakpoint is hit.
528 To remove all commands from a breakpoint, type commands and
532 breakpoint set.
534 You can use breakpoint commands to start your program up
543 encounter another breakpoint -- which could have its own
548 message about stopping at a breakpoint is not printed. This
551 print anything, you will see no sign that the breakpoint was
555 bnum = len(bdb.Breakpoint.bpbynumber) - 1
604 evaluate to true before the breakpoint is honored.
607 to specify a breakpoint in another file (probably one that
614 for bp in bdb.Breakpoint.bpbynumber:
676 # Check for reasonable breakpoint
685 self.message("Breakpoint %d at %s:%d" %
703 Same arguments as break, but sets a temporary breakpoint: it
757 # Don't allow setting breakpoint at a blank line
767 breakpoint numbers.
784 breakpoint numbers. Disabling a breakpoint means it cannot
786 breakpoint, it remains in the list of breakpoints and can be
803 Set a new condition for the breakpoint, an expression which
804 must evaluate to true before the breakpoint is honored. If
806 the breakpoint is made unconditional.
816 self.error('Breakpoint number expected')
822 self.message('Breakpoint %d is now unconditional.' % bp.number)
824 self.message('New condition set for breakpoint %d.' % bp.number)
830 Set the ignore count for the given breakpoint number. If
831 count is omitted, the ignore count is set to 0. A breakpoint
833 the count is decremented each time the breakpoint is reached
834 and the breakpoint is not disabled and any associated
845 self.error('Breakpoint number expected')
855 self.message('Will ignore next %s of breakpoint %d.' %
858 self.message('Will stop next time breakpoint %d is reached.'
865 breakpoint numbers, clear
877 bplist = [bp for bp in bdb.Breakpoint.bpbynumber if bp]
1042 Continue execution, only stop when a breakpoint is encountered.