[pypy-svn] r72882 - pypy/trunk/pypy/interpreter

benjamin at codespeak.net benjamin at codespeak.net
Fri Mar 26 04:45:39 CET 2010


Author: benjamin
Date: Fri Mar 26 04:45:38 2010
New Revision: 72882

Modified:
   pypy/trunk/pypy/interpreter/pyopcode.py
Log:
fix comment

Modified: pypy/trunk/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pyopcode.py	(original)
+++ pypy/trunk/pypy/interpreter/pyopcode.py	Fri Mar 26 04:45:38 2010
@@ -245,7 +245,7 @@
                     if not opdesc.is_enabled(space):
                         continue
                     if not hasattr(pyframe.PyFrame, opdesc.methodname):
-                        continue   # e.g. for JUMP_FORWARD, implemented above
+                        continue   # e.g. for JUMP_ABSOLUTE, implemented above
 
                     if opcode == opdesc.index:
                         # dispatch to the opcode method



More information about the Pypy-commit mailing list