[pypy-svn] r43611 - pypy/dist/pypy/interpreter

afa at codespeak.net afa at codespeak.net
Fri May 25 09:17:01 CEST 2007


Author: afa
Date: Fri May 25 09:16:59 2007
New Revision: 43611

Modified:
   pypy/dist/pypy/interpreter/callmethod.py
Log:
Correct an import changed since r43585.
Translations using --objspace-opcodes-CALL_METHOD (and --allopts) were broken.


Modified: pypy/dist/pypy/interpreter/callmethod.py
==============================================================================
--- pypy/dist/pypy/interpreter/callmethod.py	(original)
+++ pypy/dist/pypy/interpreter/callmethod.py	Fri May 25 09:16:59 2007
@@ -11,7 +11,7 @@
 """
 
 from pypy.interpreter import pyframe, function
-from pypy.rlib.objectmodel import we_are_jitted
+from pypy.rlib.jit import we_are_jitted
 from pypy.interpreter.argument import Arguments
 
 



More information about the Pypy-commit mailing list