Author: Armin Rigo <[email protected]>
Branch:
Changeset: r3128:b3b6b86cb30c
Date: 2018-07-10 16:16 +0200
http://bitbucket.org/cffi/cffi/changeset/b3b6b86cb30c/
Log: no real point in turning this warning into an error
diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3946,8 +3946,8 @@
def test_char_pointer_conversion():
import warnings
- assert __version__.startswith(("1.8", "1.9", "1.10", "1.11", "1.12")), (
- "consider turning the warning into an error")
+ assert __version__.startswith("1."), (
+ "the warning will be an error if we ever release cffi 2.x")
BCharP = new_pointer_type(new_primitive_type("char"))
BIntP = new_pointer_type(new_primitive_type("int"))
BVoidP = new_pointer_type(new_void_type())
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit