summaryrefslogtreecommitdiff
path: root/Lib/doctest.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2007-11-23 17:09:34 +0000
committerSkip Montanaro <skip@pobox.com>2007-11-23 17:09:34 +0000
commitab4fce4d7c2565c3557f59e213f0dcbdceb4e88d (patch)
tree10d17162a7677cb77a0626c772cb42ee1096eb0e /Lib/doctest.py
parenta95fdb4f9cd1a4eda4100b1b3b4afc5b275607a1 (diff)
downloadcpython-git-ab4fce4d7c2565c3557f59e213f0dcbdceb4e88d.tar.gz
Make trace and doctest play nice together (issue 1429818). Backported from
head.
Diffstat (limited to 'Lib/doctest.py')
-rw-r--r--Lib/doctest.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/doctest.py b/Lib/doctest.py
index d609c5def5..1b39a5effc 100644
--- a/Lib/doctest.py
+++ b/Lib/doctest.py
@@ -320,8 +320,19 @@ 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