[pypy-commit] cffi default: Version fix

arigo pypy.commits at gmail.com
Mon Jan 23 14:23:00 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r2868:b0204d9d8b96
Date: 2017-01-23 15:37 +0100
http://bitbucket.org/cffi/cffi/changeset/b0204d9d8b96/

Log:	Version fix

diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3744,7 +3744,7 @@
 
 def test_char_pointer_conversion():
     import warnings
-    assert __version__.startswith(("1.8", "1.9")), (
+    assert __version__.startswith(("1.8", "1.9", "1.10")), (
         "consider turning the warning into an error")
     BCharP = new_pointer_type(new_primitive_type("char"))
     BIntP = new_pointer_type(new_primitive_type("int"))


More information about the pypy-commit mailing list