Lines Matching defs:Pdb
4 The Python Debugger Pdb
12 The debugger's prompt is '(Pdb) '. This will stop in the first
56 disabled by passing the "readrc=False" argument to the Pdb constructor.
94 __all__ = ["run", "pm", "Pdb", "runeval", "runctx", "runcall", "set_trace",
207 class Pdb(bdb.Bdb, cmd.Cmd):
215 sys.audit("pdb.Pdb")
218 self.prompt = '(Pdb) '
412 # Restore the previous signal handler at the Pdb prompt.
413 if Pdb._previous_sigint_handler:
415 signal.signal(signal.SIGINT, Pdb._previous_sigint_handler)
419 Pdb._previous_sigint_handler = None
593 (Pdb)
1129 Pdb._previous_sigint_handler = \
1179 p = Pdb(self.completekey, self.stdin, self.stdout)
1591 (Pdb) global list_options; list_options = ['-l']
1592 (Pdb)
1669 __doc__ += getattr(Pdb, 'do_' + _command).__doc__.strip() + '\n\n'
1670 __doc__ += Pdb.help_exec.__doc__
1678 Pdb().run(statement, globals, locals)
1681 return Pdb().runeval(expression, globals, locals)
1688 return Pdb().runcall(*args, **kwds)
1691 pdb = Pdb()
1708 p = Pdb()
1771 pdb = Pdb()