[pypy-svn] r23291 - pypy/dist/pypy/rpython

pedronis at codespeak.net pedronis at codespeak.net
Mon Feb 13 19:13:47 CET 2006


Author: pedronis
Date: Mon Feb 13 19:13:46 2006
New Revision: 23291

Modified:
   pypy/dist/pypy/rpython/rtuple.py
Log:
(arre, pedronis)

oops, checked-in debug prints



Modified: pypy/dist/pypy/rpython/rtuple.py
==============================================================================
--- pypy/dist/pypy/rpython/rtuple.py	(original)
+++ pypy/dist/pypy/rpython/rtuple.py	Mon Feb 13 19:13:46 2006
@@ -50,7 +50,6 @@
             body.append("if not eq%d(t1.item%d, t2.item%d): return False" % (i, i, i))
         body = ('\n'+' '*4).join(body)
         source = source % body
-        print source
         exec source in miniglobals
         ll_eq = miniglobals['ll_eq']
         _gen_eq_function_cache[key] = ll_eq
@@ -75,7 +74,6 @@
             body.append("retval ^= hash%d(t.item%d)" % (i,i))
         body = ('\n'+' '*4).join(body)
         source = source % body
-        print source
         exec source in miniglobals
         ll_hash = miniglobals['ll_hash']
         _gen_hash_function_cache[key] = ll_hash



More information about the Pypy-commit mailing list