diff options
author | Skip Montanaro <skip@pobox.com> | 2007-11-24 14:30:47 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2007-11-24 14:30:47 (GMT) |
commit | 58a6f446dbf48be0c0bdcb19e82a51dea94bd55d (patch) | |
tree | 0384cd8f651a168c3da874e83e82b8154a8abe07 /Lib | |
parent | b67da6ed2b182d2ef0b4e86e1dd402d27c53422d (diff) | |
download | cpython-58a6f446dbf48be0c0bdcb19e82a51dea94bd55d.zip cpython-58a6f446dbf48be0c0bdcb19e82a51dea94bd55d.tar.gz cpython-58a6f446dbf48be0c0bdcb19e82a51dea94bd55d.tar.bz2 |
back in these go - thanks to Titus Brown for the fix
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/doctest.py | 13 | ||||
-rw-r--r-- | Lib/trace.py | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py index e874a26..be62dad 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -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 diff --git a/Lib/trace.py b/Lib/trace.py index 364e3f7..3f00605 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -286,6 +286,8 @@ class CoverageResults: # skip some "files" we don't care about... if filename == "<string>": continue + if filename.startswith("<doctest "): + continue if filename.endswith((".pyc", ".pyo")): filename = filename[:-1] |