diff options
-rw-r--r-- | Lib/test/test_support.py | 2 |
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 |