Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r58826:3701a1f44095
Date: 2012-11-11 12:46 +0100
http://bitbucket.org/pypy/pypy/changeset/3701a1f44095/

Log:    Fix translation

diff --git a/pypy/module/_cffi_backend/ctypefunc.py 
b/pypy/module/_cffi_backend/ctypefunc.py
--- a/pypy/module/_cffi_backend/ctypefunc.py
+++ b/pypy/module/_cffi_backend/ctypefunc.py
@@ -86,7 +86,7 @@
         return ''.join(argnames)
 
     def _fget_args(self):
-        return self.space.newtuple(self.fargs)
+        return self.space.newtuple([self.space.wrap(a) for a in self.fargs])
 
     def _fget_result(self):
         return self.space.wrap(self.ctitem)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to