Lines Matching defs:pdb
100 import pdb
354 class _OutputRedirectingPdb(pdb.Pdb):
363 # do not play signal games in the pdb
364 pdb.Pdb.__init__(self, stdout=out, nosigint=True)
372 pdb.Pdb.set_trace(self, frame)
378 pdb.Pdb.set_continue(self)
386 return pdb.Pdb.trace_dispatch(self, *args)
1477 # Patch pdb.set_trace to restore sys.stdout during interactive
1483 save_set_trace = pdb.set_trace
1486 pdb.set_trace = self.debugger.set_trace
1501 pdb.set_trace = save_set_trace
2638 import pdb
2650 p = pdb.Pdb(nosigint=True)
2654 pdb.Pdb(nosigint=True).run("exec(%r)" % src, globs, globs)