From: Skip Montanaro Date: Sat, 24 Nov 2007 04:29:52 +0000 (+0000) Subject: revert change that breaks test_doctest (which I forgot to run - sorry) X-Git-Tag: v2.5.2c1~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb80cd91a8f4ca4d149c2951e80bf93282de50bc;p=python revert change that breaks test_doctest (which I forgot to run - sorry) --- diff --git a/Lib/doctest.py b/Lib/doctest.py index 1b39a5effc..d609c5def5 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -320,19 +320,8 @@ 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): - self.__debugger_used = True - pdb.Pdb.set_trace(self) - - 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 diff --git a/Lib/trace.py b/Lib/trace.py index 3f00605254..364e3f7bc9 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -286,8 +286,6 @@ class CoverageResults: # skip some "files" we don't care about... if filename == "": continue - if filename.startswith("