[pypy-svn] r60171 - pypy/build/benchmem

xoraxax at codespeak.net xoraxax at codespeak.net
Thu Nov 27 00:03:02 CET 2008


Author: xoraxax
Date: Thu Nov 27 00:03:01 2008
New Revision: 60171

Modified:
   pypy/build/benchmem/runbench.py
Log:
Fix comma/semicolon.

Modified: pypy/build/benchmem/runbench.py
==============================================================================
--- pypy/build/benchmem/runbench.py	(original)
+++ pypy/build/benchmem/runbench.py	Thu Nov 27 00:03:01 2008
@@ -75,7 +75,7 @@
         print >>self.logstream
 
     def run(self):
-        cmds = [str(self.executable_full_path), '-S', '-c',  '''import sys, sys.stdout.write("F"); sys.stdout.flush(); raw_input()''']
+        cmds = [str(self.executable_full_path), '-S', '-c',  '''import sys; sys.stdout.write("F"); sys.stdout.flush(); raw_input()''']
         self.log("running %r" % (cmds, ))
         popen = Popen(cmds, shell=False, stdin=PIPE, stdout=PIPE, close_fds=True)
         self.write_benchheader()



More information about the Pypy-commit mailing list