[pypy-svn] r34220 - pypy/dist/pypy/translator/goal

pedronis at codespeak.net pedronis at codespeak.net
Sun Nov 5 12:04:41 CET 2006


Author: pedronis
Date: Sun Nov  5 12:04:30 2006
New Revision: 34220

Modified:
   pypy/dist/pypy/translator/goal/bench-unix.py
Log:
fix alignment and spacing of the output.



Modified: pypy/dist/pypy/translator/goal/bench-unix.py
==============================================================================
--- pypy/dist/pypy/translator/goal/bench-unix.py	(original)
+++ pypy/dist/pypy/translator/goal/bench-unix.py	Sun Nov  5 12:04:30 2006
@@ -94,7 +94,7 @@
 def main():
     benchmark_result = BenchmarkResult('bench-unix.benchmark_result')
 
-    print 'date                           size codesize    executable                                          richards            pystone'
+    print 'date                           size codesize    executable                                                      richards            pystone'
     sys.stdout.flush()
 
     ref_rich, ref_stone = None, None
@@ -117,7 +117,7 @@
         if not ref_stone:
             ref_stone = stone
 
-        fmt = '%-26s %8s %8s    <a href="microbench-archive/%s.txt">%-48s</a>   %6dms (%6.1fx)   %6d (%6.1fx)'
+        fmt = '%-26s %8s %8s    <a href="microbench-archive/%s.txt">%-60s</a>   %6dms (%6.1fx)   %6d (%6.1fx)'
         print fmt % (time.ctime(), '-', '-', 'python', 'CPython ' + v, rich, rich / ref_rich, stone, stone / ref_stone)
         sys.stdout.flush()
 



More information about the Pypy-commit mailing list