summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-05-17 01:59:57 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-05-17 01:59:57 (GMT)
commit1ba24b4fbb1c675cd2edbdf2b1c0fbb5054b8969 (patch)
treeae0e744caf5972269ce1a8857af06166f7708445 /Lib/test/test_support.py
parent627728acbc36995da8cc19935c993e62c0e21e98 (diff)
downloadcpython-1ba24b4fbb1c675cd2edbdf2b1c0fbb5054b8969.zip
cpython-1ba24b4fbb1c675cd2edbdf2b1c0fbb5054b8969.tar.gz
cpython-1ba24b4fbb1c675cd2edbdf2b1c0fbb5054b8969.tar.bz2
Include module name in doctest summary.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 467187e..005e847 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -288,5 +288,5 @@ def run_doctest(module, verbosity=None):
finally:
sys.stdout = save_stdout
if verbose:
- print 'Ran %d doctests with zero failures' % (t,)
+ print 'doctest (%s) ... %d tests with zero failures' % (module.__name__, t)
return f, t