[pypy-svn] rev 439 - pypy/trunk/src/pypy/interpreter

tomek at codespeak.net tomek at codespeak.net
Mon May 26 15:00:28 CEST 2003


Author: tomek
Date: Mon May 26 15:00:28 2003
New Revision: 439

Modified:
   pypy/trunk/src/pypy/interpreter/appfile.py
   pypy/trunk/src/pypy/interpreter/main.py
Log:
the right version of compile in main.py


Modified: pypy/trunk/src/pypy/interpreter/appfile.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/appfile.py	(original)
+++ pypy/trunk/src/pypy/interpreter/appfile.py	Mon May 26 15:00:28 2003
@@ -1,5 +1,5 @@
 import os
-
+from pypy.module.builtin import compile
 
 class AppFile:
     """Dynamic loader of a set of Python functions and objects that

Modified: pypy/trunk/src/pypy/interpreter/main.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/main.py	(original)
+++ pypy/trunk/src/pypy/interpreter/main.py	Mon May 26 15:00:28 2003
@@ -1,6 +1,7 @@
 from pypy.objspace.std import StdObjSpace
 from pypy.objspace.trivial import TrivialObjSpace
 import executioncontext, baseobjspace, pyframe
+from pypy.module.builtin import compile
 
 import sys
 


More information about the Pypy-commit mailing list