Home | History | Annotate | Download | only in Lib

Lines Matching refs:commands

24 The commands recognized by the debugger are listed in the next
34 Commands that the debugger doesn't recognize are assumed to be Python
46 Multiple commands may be entered on a single line, separated by the
47 pair ';;'. No intelligence is applied to separating the commands; the
63 Debugger commands
68 # commands and is appended to __doc__ after the class has been defined.
178 self.commands = {} # associates a command list to breakpoint numbers
271 self.currentbp in self.commands:
276 for line in self.commands[currentbp]:
399 # split into ';;' separated commands
433 cmdlist = self.commands[self.commands_bnum]
443 # one of the resuming commands
518 """commands [bpnumber]
523 Specify a list of commands for breakpoint number bpnumber.
524 The commands themselves are entered on the following lines.
525 Type a line containing just 'end' to terminate the commands.
526 The commands are executed when the breakpoint is hit.
528 To remove all commands from a breakpoint, type commands and
529 follow it immediately with end; that is, give no commands.
531 With no bpnumber argument, commands refers to the last
534 You can use breakpoint commands to start your program up
550 message and then continue. If none of the other commands
560 self.error("Usage: commands [bnum]\n ...\n end")
564 if bnum in self.commands:
565 old_command_defs = (self.commands[bnum],
570 self.commands[bnum] = []
582 self.commands[bnum] = old_command_defs[0]
586 del self.commands[bnum]
589 self.error('command definition aborted, old commands restored')
918 context of most commands. 'bt' is an alias for this command.
1391 internal pdb commands with aliases! Those internal commands
1427 # List of all the commands making the program resume execution.
1435 # It is also consistent with the up/down commands (which are
1459 Without argument, print the list of available commands.
1556 'enable', 'ignore', 'condition', 'commands', 'step', 'next', 'until',
1624 Initial commands are read from .pdbrc files in your home directory
1625 and in the current directory, if they exist. Commands supplied with
1626 -c are executed after commands from .pdbrc files.
1641 commands = []
1647 commands.append(optarg)
1664 pdb.rcLines.extend(commands)