summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2018-07-07 17:38:57 +0200
committerArmin Rigo <arigo@tunes.org>2018-07-07 17:38:57 +0200
commitee7c6c33e97c9d8e3ab1454f2bba5eb10760e024 (patch)
treecc3fd04085194d949f1c91a1ebcc2b4dab1e8cee
parent717d6365e82854940290f5e061106919a0562412 (diff)
downloadcffi-ee7c6c33e97c9d8e3ab1454f2bba5eb10760e024.tar.gz
Last version where we still give this warning, thinking about turning it
into an error now
-rw-r--r--c/test_c.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/test_c.py b/c/test_c.py
index a8fef65..5a345e3 100644
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3946,7 +3946,7 @@ def test_cdata_dir():
def test_char_pointer_conversion():
import warnings
- assert __version__.startswith(("1.8", "1.9", "1.10", "1.11")), (
+ assert __version__.startswith(("1.8", "1.9", "1.10", "1.11", "1.12")), (
"consider turning the warning into an error")
BCharP = new_pointer_type(new_primitive_type("char"))
BIntP = new_pointer_type(new_primitive_type("int"))