Lines Matching defs:pdb
9 >>> import pdb
10 >>> pdb.run('<a statement>')
16 you can use pdb's post-mortem facility to inspect the contents of the
21 >>> import pdb
22 >>> pdb.pm()
140 # Replace pdb's dir with script's dir in front of module search path.
202 # be to your liking. You can set it once pdb is imported using the
203 # command "pdb.line_prefix = '\n% '".
215 sys.audit("pdb.Pdb")
1488 legally typed at the pdb prompt. Note! You *can* override
1489 internal pdb commands with aliases! Those internal commands
1559 "help pdb" shows the full pdb documentation.
1691 pdb = Pdb()
1693 pdb.message(header)
1694 pdb.set_trace(sys._getframe().f_back)
1729 usage: pdb.py [-c command] ... [-m module | pyfile] [arg] ...
1765 sys.argv[:] = args # Hide "pdb.py" and pdb options from argument list
1771 pdb = Pdb()
1772 pdb.rcLines.extend(commands)
1775 pdb._run(target)
1776 if pdb._user_requested_quit:
1794 pdb.interaction(None, t)
1801 import pdb
1802 pdb.main()