]> granicus.if.org Git - python/commitdiff
Include module name in doctest summary.
authorRaymond Hettinger <python@rcn.com>
Sat, 17 May 2003 01:59:57 +0000 (01:59 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 17 May 2003 01:59:57 +0000 (01:59 +0000)
Lib/test/test_support.py

index 467187e670b4e93abae52e50e3b0049bdc0f32bd..005e847eb755f12f4b8db0cddd6deeb166aea5b0 100644 (file)
@@ -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