[pypy-svn] r65304 - pypy/branch/pyjitpl5/pypy/jit/metainterp

antocuni at codespeak.net antocuni at codespeak.net
Tue May 19 10:31:14 CEST 2009


Author: antocuni
Date: Tue May 19 10:31:13 2009
New Revision: 65304

Modified:
   pypy/branch/pyjitpl5/pypy/jit/metainterp/simple_optimize.py
Log:
don't print stuff on stdout, as it breaks the minimal and cli backends
(because the spawn an external process and read the result as printed on
stdout)



Modified: pypy/branch/pyjitpl5/pypy/jit/metainterp/simple_optimize.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/metainterp/simple_optimize.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/metainterp/simple_optimize.py	Tue May 19 10:31:13 2009
@@ -121,7 +121,7 @@
                     self.nodes[box] = instnode
                     continue
             newoperations.append(op)
-        print "Length of the loop:", len(newoperations)
+        #print "Length of the loop:", len(newoperations)
         self.loop.operations = newoperations
     
     def optimize_loop(self, loop):



More information about the Pypy-commit mailing list