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

alex at codespeak.net alex at codespeak.net
Mon May 26 18:53:54 CEST 2003


Author: alex
Date: Mon May 26 18:53:54 2003
New Revision: 473

Modified:
   pypy/trunk/src/pypy/interpreter/pycode.py
Log:
removed a from



Modified: pypy/trunk/src/pypy/interpreter/pycode.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/pycode.py	(original)
+++ pypy/trunk/src/pypy/interpreter/pycode.py	Mon May 26 18:53:54 2003
@@ -17,9 +17,9 @@
 # think of a proper base class???
 
 import baseobjspace, pyframe
-from appfile import AppFile
+import appfile
 
-appfile = AppFile(__name__, ["interpreter"])
+appfile = appfile.AppFile(__name__, ["interpreter"])
 
 CO_VARARGS     = 0x0004
 CO_VARKEYWORDS = 0x0008


More information about the Pypy-commit mailing list