[pypy-svn] pypy jitypes2: hg merge default

antocuni commits-noreply at bitbucket.org
Mon Jan 17 19:32:13 CET 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: jitypes2
Changeset: r40814:6799cae26949
Date: 2011-01-17 19:27 +0100
http://bitbucket.org/pypy/pypy/changeset/6799cae26949/

Log:	hg merge default

diff --git a/lib_pypy/_ctypes/function.py b/lib_pypy/_ctypes/function.py
--- a/lib_pypy/_ctypes/function.py
+++ b/lib_pypy/_ctypes/function.py
@@ -196,8 +196,9 @@
                     % (len(self._argtypes_), plural, len(args)))
 
             # check that arguments are convertible
-            # XXX: uncomment me, but right now it makes a lot of tests failing :-(
-            #self._convert_args(self._argtypes_, args)
+            ## XXX Not as long as ctypes.cast is a callback function with
+            ## py_object arguments...
+            ## self._convert_args(self._argtypes_, args)
 
             try:
                 res = self.callable(*args)


More information about the Pypy-commit mailing list