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

jacob at codespeak.net jacob at codespeak.net
Thu May 29 17:14:54 CEST 2003


Author: jacob
Date: Thu May 29 17:14:54 2003
New Revision: 695

Modified:
   pypy/trunk/src/pypy/interpreter/extmodule.py
Log:
Fixed missing self

Modified: pypy/trunk/src/pypy/interpreter/extmodule.py
==============================================================================
--- pypy/trunk/src/pypy/interpreter/extmodule.py	(original)
+++ pypy/trunk/src/pypy/interpreter/extmodule.py	Thu May 29 17:14:54 2003
@@ -86,7 +86,7 @@
             w_dict = space.getattr(w_module, space.wrap("__dict__"))
             appfile.AppHelper(space, sappfile, w_dict)
 
-    def callhelp(functioname,argslist):
+    def callhelp(self, functioname, argslist):
         if self._helper is None:
             self._helper = appfile.AppHelper(self.space,
                                              self.__helper_appfile__)


More information about the Pypy-commit mailing list