[pypy-svn] r67657 - pypy/trunk/pypy/jit/metainterp/test

pedronis at codespeak.net pedronis at codespeak.net
Sat Sep 12 11:44:48 CEST 2009


Author: pedronis
Date: Sat Sep 12 11:44:47 2009
New Revision: 67657

Modified:
   pypy/trunk/pypy/jit/metainterp/test/test_recursive.py
Log:
this was debugging print and made the x86 zrpy variant unhappy

Modified: pypy/trunk/pypy/jit/metainterp/test/test_recursive.py
==============================================================================
--- pypy/trunk/pypy/jit/metainterp/test/test_recursive.py	(original)
+++ pypy/trunk/pypy/jit/metainterp/test/test_recursive.py	Sat Sep 12 11:44:47 2009
@@ -322,7 +322,6 @@
                     n -= 1
                 elif op == "c":
                     if n < 70 and n % 3 == 1:
-                        print "F"
                         n = f("--", n)
                 elif op == "l":
                     if n > 0:



More information about the Pypy-commit mailing list