[pypy-commit] pypy default: Add a failing test for the rint ufunc

rguillebert noreply at buildbot.pypy.org
Wed Aug 21 03:05:39 CEST 2013


Author: Romain Guillebert <romain.py at gmail.com>
Branch: 
Changeset: r66271:a643b3face13
Date: 2013-08-21 03:03 +0200
http://bitbucket.org/pypy/pypy/changeset/a643b3face13/

Log:	Add a failing test for the rint ufunc

diff --git a/pypy/module/micronumpy/test/test_ufuncs.py b/pypy/module/micronumpy/test/test_ufuncs.py
--- a/pypy/module/micronumpy/test/test_ufuncs.py
+++ b/pypy/module/micronumpy/test/test_ufuncs.py
@@ -257,6 +257,7 @@
 
     def test_rint(self):
         from numpypy import array, complex, rint, isnan
+        import sys
 
         nnan, nan, inf, ninf = float('-nan'), float('nan'), float('inf'), float('-inf')
 
@@ -271,6 +272,8 @@
         assert rint(complex(inf, 1.5)) == complex(inf, 2.)
         assert rint(complex(0.5, inf)) == complex(0., inf)
 
+        assert rint(sys.maxint) == sys.maxint
+
     def test_sign(self):
         from numpypy import array, sign, dtype
 


More information about the pypy-commit mailing list