From 1ba24b4fbb1c675cd2edbdf2b1c0fbb5054b8969 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 17 May 2003 01:59:57 +0000 Subject: Include module name in doctest summary. --- Lib/test/test_support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12