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

pedronis at codespeak.net pedronis at codespeak.net
Tue May 27 13:13:06 CEST 2003


Author: pedronis
Date: Tue May 27 13:13:05 2003
New Revision: 530

Modified:
   pypy/trunk/src/pypy/interpreter/extmodule.py
Log:
prefix with appfile


Modified: pypy/trunk/src/pypy/interpreter/extmodule.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/extmodule.py	(original)
+++ pypy/trunk/src/pypy/interpreter/extmodule.py	Tue May 27 13:13:05 2003
@@ -52,7 +52,8 @@
     def __init__(self, space):
         self.space = space
         if self.__helper_appfile__ is not None:
-            self._helper = AppHelper(self.space, self.__helper_appfile__)
+            self._helper = appfile.AppHelper(self.space,
+                                             self.__helper_appfile__)
             
     def wrap_me(self):
         space = self.space


More information about the Pypy-commit mailing list