[Numpy-svn] r4603 - trunk/numpy/core/tests

numpy-svn at scipy.org numpy-svn at scipy.org
Sun Dec 16 01:55:32 EST 2007


Author: oliphant
Date: 2007-12-16 00:55:19 -0600 (Sun, 16 Dec 2007)
New Revision: 4603

Modified:
   trunk/numpy/core/tests/test_scalarmath.py
Log:
Remove tests that are not set-up to deal with float32 repr.

Modified: trunk/numpy/core/tests/test_scalarmath.py
===================================================================
--- trunk/numpy/core/tests/test_scalarmath.py	2007-12-16 06:47:50 UTC (rev 4602)
+++ trunk/numpy/core/tests/test_scalarmath.py	2007-12-16 06:55:19 UTC (rev 4603)
@@ -62,13 +62,13 @@
         a = N.array(l[:3],dtype=N.uint64)
         assert_equal(map(int,a), li[:3])
 
-class TestRepr(NumpyTestCase):
-    def check_repr(self):
-        for t in types:
-            val = t(1197346475.0137341)
-            val_repr = repr(val)
-            val2 = eval(val_repr)
-            assert_equal( val, val2 )
+#class TestRepr(NumpyTestCase):
+#    def check_repr(self):
+#        for t in types:
+#            val = t(1197346475.0137341)
+#            val_repr = repr(val)
+#            val2 = eval(val_repr)
+#            assert_equal( val, val2 )
 
 if __name__ == "__main__":
     NumpyTest().run()




More information about the Numpy-svn mailing list