[Python-checkins] cpython (3.2): #12074: remove the /0 when there are no failures.

ezio.melotti python-checkins at python.org
Tue May 24 00:04:16 CEST 2011


http://hg.python.org/cpython/rev/396f4ed61db7
changeset:   70319:396f4ed61db7
branch:      3.2
parent:      70315:e2e21a76178c
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Tue May 24 01:00:10 2011 +0300
summary:
  #12074: remove the /0 when there are no failures.

files:
  Lib/test/regrtest.py |  6 ++++--
  1 files changed, 4 insertions(+), 2 deletions(-)


diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -582,7 +582,8 @@
                     continue
                 accumulate_result(test, result)
                 if not quiet:
-                    print("[{1:{0}}{2}/{3}] {4}".format(
+                    fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
+                    print(fmt.format(
                         test_count_width, test_index, test_count,
                         len(bad), test))
                 if stdout:
@@ -601,7 +602,8 @@
     else:
         for test_index, test in enumerate(tests, 1):
             if not quiet:
-                print("[{1:{0}}{2}/{3}] {4}".format(
+                fmt = "[{1:{0}}{2}/{3}] {4}" if bad else "[{1:{0}}{2}] {4}"
+                print(fmt.format(
                     test_count_width, test_index, test_count, len(bad), test))
                 sys.stdout.flush()
             if trace:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list