[pypy-svn] r75485 - pypy/branch/fast-ctypes/pypy/rlib

getxsick at codespeak.net getxsick at codespeak.net
Tue Jun 22 02:08:16 CEST 2010


Author: getxsick
Date: Tue Jun 22 02:08:14 2010
New Revision: 75485

Modified:
   pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
Log:
Ops. Somehow i undo the last change and the last commit was incomplete.


Modified: pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
==============================================================================
--- pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	(original)
+++ pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	Tue Jun 22 02:08:14 2010
@@ -63,7 +63,7 @@
         FUNC = deref(FPTR)
         self.calldescr = self.cpu.calldescrof(FUNC, FUNC.ARGS, FUNC.RESULT)
 
-    def call(self, *func_args):
+    def call(self, func_args):
         bargs = []
         for tp, value in zip(self.args_type, func_args):
             if tp == 'int':



More information about the Pypy-commit mailing list