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

benjamin at codespeak.net benjamin at codespeak.net
Sun Apr 18 01:19:13 CEST 2010


Author: benjamin
Date: Sun Apr 18 01:19:12 2010
New Revision: 73857

Modified:
   pypy/trunk/pypy/interpreter/pyframe.py
Log:
move rstack import

Modified: pypy/trunk/pypy/interpreter/pyframe.py
==============================================================================
--- pypy/trunk/pypy/interpreter/pyframe.py	(original)
+++ pypy/trunk/pypy/interpreter/pyframe.py	Sun Apr 18 01:19:12 2010
@@ -10,7 +10,7 @@
 from pypy.rlib.objectmodel import we_are_translated, instantiate
 from pypy.rlib.jit import hint
 from pypy.rlib.debug import make_sure_not_resized
-from pypy.rlib import jit
+from pypy.rlib import jit, rstack
 from pypy.tool import stdlib_opcode
 
 # Define some opcodes used
@@ -132,7 +132,6 @@
 
     def execute_frame(self):
         """Execute this frame.  Main entry point to the interpreter."""
-        from pypy.rlib import rstack
         # the following 'assert' is an annotation hint: it hides from
         # the annotator all methods that are defined in PyFrame but
         # overridden in the {,Host}FrameClass subclasses of PyFrame.



More information about the Pypy-commit mailing list