[pypy-commit] cffi default: Remove old 'flags=' which is just ignored by distutils

arigo noreply at buildbot.pypy.org
Sun May 31 15:11:10 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r2144:21420a443087
Date: 2015-05-31 15:11 +0200
http://bitbucket.org/cffi/cffi/changeset/21420a443087/

Log:	Remove old 'flags=' which is just ignored by distutils

diff --git a/testing/cffi1/test_verify1.py b/testing/cffi1/test_verify1.py
--- a/testing/cffi1/test_verify1.py
+++ b/testing/cffi1/test_verify1.py
@@ -2133,8 +2133,7 @@
     # Hack, using modulename makes the test fail
     ffi2 = FFI()
     ffi2.cdef("int foo_verify_dlopen_flags;")
-    lib2 = ffi2.verify("int foo_verify_dlopen_flags;",
-                       flags=ffi2.RTLD_GLOBAL | ffi2.RTLD_LAZY)
+    lib2 = ffi2.verify("int foo_verify_dlopen_flags;")
     return lib2
 
 def test_consider_not_implemented_function_type():


More information about the pypy-commit mailing list