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

antocuni at codespeak.net antocuni at codespeak.net
Wed Aug 8 15:24:24 CEST 2007


Author: antocuni
Date: Wed Aug  8 15:24:24 2007
New Revision: 45552

Modified:
   pypy/dist/pypy/translator/goal/targetrpystonedalone.py
Log:
add a newline to rpystone's output



Modified: pypy/dist/pypy/translator/goal/targetrpystonedalone.py
==============================================================================
--- pypy/dist/pypy/translator/goal/targetrpystonedalone.py	(original)
+++ pypy/dist/pypy/translator/goal/targetrpystonedalone.py	Wed Aug  8 15:24:24 2007
@@ -16,7 +16,7 @@
     if loops >= 0:
         s = ("RPystone(%s) time for %d passes = %f" %
              (VERSION, loops, benchtime) + '\n' + (
-             "This machine benchmarks at %f pystones/second" % stones))
+             "This machine benchmarks at %f pystones/second\n" % stones))
     os.write(1, s)
     if loops == 12345:
         pystones_main(loops-1)
@@ -73,4 +73,4 @@
 This is a case treated specially in the driver.py . If the list
 of input types is empty, it is meant to be a list of strings,
 actually implementing argv of the executable.
-"""
\ No newline at end of file
+"""



More information about the Pypy-commit mailing list