Lines Matching defs:run
10 >>> pdb.run('<a statement>')
94 __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",
374 # issued by the interpreter when handling a subgenerator run with
1095 """run [args...]
1099 are preserved. "restart" is an alias for "run".
1107 self.error('Cannot run %s: %s' % (arg, e))
1146 to run.
1183 sys.call_tracing(p.run, (arg, globals, locals))
1574 self.error('No help for %r; please do not run Python with -OO '
1636 # The target has to run in __main__ namespace (or imports from
1643 self.run(target.code)
1656 # Collect all command help into docstring, if not run with -OO
1663 'jump', 'return', 'retval', 'run', 'continue', 'list', 'longlist',
1677 def run(statement, globals=None, locals=None):
1678 Pdb().run(statement, globals, locals)
1685 run(statement, globals, locals)
1721 run(TESTCMD)
1739 To let the script run until an exception occurs, use "-c continue".
1740 To let the script run up to a given line X in the debugged file, use