[pypy-svn] r70579 - pypy/trunk/pypy/translator/benchmark

fijal at codespeak.net fijal at codespeak.net
Thu Jan 14 12:42:12 CET 2010


Author: fijal
Date: Thu Jan 14 12:42:10 2010
New Revision: 70579

Modified:
   pypy/trunk/pypy/translator/benchmark/benchmarks.py
Log:
(pedronis, fijal)
Kill a breaking print (bah)


Modified: pypy/trunk/pypy/translator/benchmark/benchmarks.py
==============================================================================
--- pypy/trunk/pypy/translator/benchmark/benchmarks.py	(original)
+++ pypy/trunk/pypy/translator/benchmark/benchmarks.py	Thu Jan 14 12:42:10 2010
@@ -51,7 +51,6 @@
     return True
 
 def run_cmd(cmd):
-    print "running", cmd
     pipe = os.popen(cmd + ' 2>&1')
     r = pipe.read()
     status = pipe.close()



More information about the Pypy-commit mailing list