Lines Matching +refs:current +refs:line

17 the source line level, inspection of stack frames, source code listing, and
46 command arguments, e.g. the current global and local names are offered as
67 before the first line of the module.
89 File "<stdin>", line 1, in <module>
90 File "./mymodule.py", line 4, in test
92 File "./mymodule.py", line 3, in test2
216 Entering a blank line repeats the last command entered. Exception: if the last
231 Multiple commands may be entered on a single line, separated by ``;;``. (A
232 single ``;`` is not used as it is the separator for multiple commands in a line
241 If a file :file:`.pdbrc` exists in the user's home directory or in the current
264 indicates the current frame, which determines the context of most commands.
268 Move the current frame *count* (default one) levels down in the stack trace
273 Move the current frame *count* (default one) levels up in the stack trace (to
278 With a *lineno* argument, set a break there in the current file. With a
280 that function. The line number may be prefixed with a filename and a colon,
289 of times that breakpoint has been hit, the current ignore count, and the
299 With a *filename:lineno* argument, clear all the breakpoints at this line.
331 themselves appear on the following lines. Type a line containing just
364 Execute the current line, stop at the first possible occasion (either in a
365 function that is called or on the next line in the current function).
369 Continue execution until the next line in the current function is reached or
373 line in the current function.)
377 Without argument, continue execution until the line with a number greater
378 than the current one is reached.
380 With a line number, continue execution until a line with a number greater or
381 equal to that is reached. In both cases, also stop when the current frame
385 Allow giving an explicit line number.
389 Continue execution until the current function returns.
397 Set the next line that will be executed. Only available in the bottom-most
407 List source code for the current file. Without arguments, list 11 lines
408 around the current line or continue the previous listing. With ``.`` as
409 argument, list 11 lines around the current line. With one argument,
410 list 11 lines around at that line. With two arguments, list the given range;
413 The current line in the current frame is indicated by ``->``. If an
414 exception is being debugged, the line where the exception was originally
415 raised or propagated is indicated by ``>>``, if it differs from the current
416 line.
423 List all source code for the current function or frame. Interesting lines
430 Print the argument list of the current function.
434 Evaluate the *expression* in the current context and print its value.
460 in the current frame.
462 Without expression, list all display expressions for the current frame.
468 Do not display the expression any more in the current frame. Without
469 expression, clear all display expressions for the current frame.
476 namespace contains all the (global and local) names found in the current
488 If no command is given, the current alias for *name* is shown. If no
494 is recursively applied to the first word of the command line; all other words
495 in the line are left alone.
511 Execute the (one-line) *statement* in the context of the current stack frame.
514 assignment command with a :keyword:`global` statement on the same line,