Author: Armin Rigo <[email protected]>
Branch:
Changeset: r1157:43c968f23b02
Date: 2013-02-13 12:32 +0100
http://bitbucket.org/cffi/cffi/changeset/43c968f23b02/
Log: Bah, seems Yet Another ctypes limitation of PyPy. Don't fully care
:-/
diff --git a/testing/test_function.py b/testing/test_function.py
--- a/testing/test_function.py
+++ b/testing/test_function.py
@@ -276,6 +276,9 @@
def test_function_with_struct_argument(self):
if sys.platform == 'win32':
py.test.skip("no 'inet_ntoa'")
+ if (self.Backend is CTypesBackend and
+ '__pypy__' in sys.builtin_module_names):
+ py.test.skip("ctypes limitation on pypy")
ffi = FFI(backend=self.Backend())
ffi.cdef("""
struct in_addr { unsigned int s_addr; };
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit