Author: Armin Rigo <ar...@tunes.org>
Branch: py3.5
Changeset: r95127:d9a97ab80c60
Date: 2018-09-16 00:03 +0200
http://bitbucket.org/pypy/pypy/changeset/d9a97ab80c60/

Log:    hg merge default

diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py 
b/pypy/module/_cffi_backend/test/_backend_test_c.py
--- a/pypy/module/_cffi_backend/test/_backend_test_c.py
+++ b/pypy/module/_cffi_backend/test/_backend_test_c.py
@@ -342,11 +342,7 @@
         py.test.raises(OverflowError, newp, pp, max + 1)
         py.test.raises(OverflowError, newp, pp, min - 1 - 2 ** 32)
         py.test.raises(OverflowError, newp, pp, min - 1 - 2 ** 64)
-        py.test.raises(OverflowError, newp, pp, min - 1 + 2 ** 32)
-        py.test.raises(OverflowError, newp, pp, min - 1 + 2 ** 64)
         py.test.raises(OverflowError, newp, pp, max + 1)
-        py.test.raises(OverflowError, newp, pp, max + 1 - 2 ** 32)
-        py.test.raises(OverflowError, newp, pp, max + 1 - 2 ** 64)
         py.test.raises(OverflowError, newp, pp, max + 1 + 2 ** 32)
         py.test.raises(OverflowError, newp, pp, max + 1 + 2 ** 64)
         py.test.raises(TypeError, newp, pp, 1.0)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to