[pypy-svn] r76044 - pypy/branch/reflex-support/pypy/module/cppyy

arigo at codespeak.net arigo at codespeak.net
Thu Jul 8 18:17:19 CEST 2010


Author: arigo
Date: Thu Jul  8 18:17:14 2010
New Revision: 76044

Modified:
   pypy/branch/reflex-support/pypy/module/cppyy/executor.py
Log:
Translation fix.


Modified: pypy/branch/reflex-support/pypy/module/cppyy/executor.py
==============================================================================
--- pypy/branch/reflex-support/pypy/module/cppyy/executor.py	(original)
+++ pypy/branch/reflex-support/pypy/module/cppyy/executor.py	Thu Jul  8 18:17:14 2010
@@ -10,7 +10,7 @@
         raise NotImplementedError("abstract base class")
 
 
-class VoidExecutor(object):
+class VoidExecutor(FunctionExecutor):
     def execute(self, space, func, cppthis, num_args, args):
         capi.c_cppyy_call_v(func.cpptype.handle, func.method_index, cppthis, num_args, args)
         return space.w_None



More information about the Pypy-commit mailing list