[pypy-svn] r64190 - pypy/branch/pyjitpl5-simplify/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Thu Apr 16 22:48:53 CEST 2009


Author: fijal
Date: Thu Apr 16 22:48:53 2009
New Revision: 64190

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/interpreter/pyopcode.py
Log:
extra-verbose logging TO BE REMOVED, just I miss the way of transferring
diffs to other machines


Modified: pypy/branch/pyjitpl5-simplify/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/interpreter/pyopcode.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/interpreter/pyopcode.py	Thu Apr 16 22:48:53 2009
@@ -177,6 +177,7 @@
                 ec.bytecode_trace(self)
                 next_instr = r_uint(self.last_instr)
             opcode = ord(co_code[next_instr])
+            print "DISPATCHING: %d" % (opcode,)
             next_instr += 1
             if space.config.objspace.logbytecodes:
                 space.bytecodecounts[opcode] = space.bytecodecounts.get(opcode, 0) + 1



More information about the Pypy-commit mailing list