Lines Matching refs:Pdb
99 import unittest, difflib, pdb, tempfile
329 class _OutputRedirectingPdb(pdb.Pdb):
338 pdb.Pdb.__init__(self, stdout=out)
346 pdb.Pdb.set_trace(self, frame)
352 pdb.Pdb.set_continue(self)
358 # Call Pdb's trace dispatch method.
360 return pdb.Pdb.trace_dispatch(self, *args)
1409 # Patch pdb.set_trace to restore sys.stdout during interactive
1414 save_set_trace = pdb.set_trace
1417 pdb.set_trace = self.debugger.set_trace
1432 pdb.set_trace = save_set_trace
2627 import pdb
2648 pdb.post_mortem(sys.exc_info()[2])
2652 pdb.run("execfile(%r)" % srcfilename, globs, globs)