[pypy-svn] r52879 - pypy/branch/jit-hotpath/pypy/jit/rainbow

arigo at codespeak.net arigo at codespeak.net
Sun Mar 23 19:07:12 CET 2008


Author: arigo
Date: Sun Mar 23 19:07:11 2008
New Revision: 52879

Modified:
   pypy/branch/jit-hotpath/pypy/jit/rainbow/codewriter.py
Log:
Remove a debug print.


Modified: pypy/branch/jit-hotpath/pypy/jit/rainbow/codewriter.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/rainbow/codewriter.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/rainbow/codewriter.py	Sun Mar 23 19:07:11 2008
@@ -966,7 +966,6 @@
     def serialize_op_direct_call(self, op):
         kind, withexc = self.guess_call_kind(op)
         handler = getattr(self, "handle_%s_call" % (kind, ))
-        print op, kind, withexc
         return handler(op, withexc)
 
     def serialize_op_ts_metacall(self, op):



More information about the Pypy-commit mailing list