mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
back in these go - thanks to Titus Brown for the fix
This commit is contained in:
parent
b67da6ed2b
commit
58a6f446db
3 changed files with 18 additions and 0 deletions
|
@ -320,8 +320,21 @@ class _OutputRedirectingPdb(pdb.Pdb):
|
|||
"""
|
||||
def __init__(self, out):
|
||||
self.__out = out
|
||||
self.__debugger_used = False
|
||||
pdb.Pdb.__init__(self, stdout=out)
|
||||
|
||||
def set_trace(self, frame=None):
|
||||
self.__debugger_used = True
|
||||
if frame is None:
|
||||
frame = sys._getframe().f_back
|
||||
pdb.Pdb.set_trace(self, frame)
|
||||
|
||||
def set_continue(self):
|
||||
# Calling set_continue unconditionally would break unit test
|
||||
# coverage reporting, as Bdb.set_continue calls sys.settrace(None).
|
||||
if self.__debugger_used:
|
||||
pdb.Pdb.set_continue(self)
|
||||
|
||||
def trace_dispatch(self, *args):
|
||||
# Redirect stdout to the given stream.
|
||||
save_stdout = sys.stdout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue