From: Raymond Hettinger Date: Sat, 17 May 2003 01:59:57 +0000 (+0000) Subject: Include module name in doctest summary. X-Git-Tag: v2.3c1~695 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ba24b4fbb1c675cd2edbdf2b1c0fbb5054b8969;p=thirdparty%2FPython%2Fcpython.git Include module name in doctest summary. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 467187e670b4..005e847eb755 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