[pypy-svn] r39845 - pypy/dist/pypy/rpython

antocuni at codespeak.net antocuni at codespeak.net
Sun Mar 4 09:38:21 CET 2007


Author: antocuni
Date: Sun Mar  4 09:38:19 2007
New Revision: 39845

Modified:
   pypy/dist/pypy/rpython/extfunc.py
Log:
(antocuni, pedronis)

aargh... we forgot to commit this :-(



Modified: pypy/dist/pypy/rpython/extfunc.py
==============================================================================
--- pypy/dist/pypy/rpython/extfunc.py	(original)
+++ pypy/dist/pypy/rpython/extfunc.py	Sun Mar  4 09:38:19 2007
@@ -53,7 +53,7 @@
         fakeimpl = getattr(self, fake_method_name, self.instance)
         if impl:
             obj = rtyper.getannmixlevel().delayedfunction(
-                impl.im_func, self.signature_args, self.signature_result)
+                impl, self.signature_args, self.signature_result)
         else:
             obj = rtyper.type_system.getexternalcallable(args_ll, ll_result,
                                  name, _external_name=self.name, _callable=fakeimpl)



More information about the Pypy-commit mailing list