diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_scalarmath.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/numpy/core/tests/test_scalarmath.py b/numpy/core/tests/test_scalarmath.py index d9d828176..080c51fd4 100644 --- a/numpy/core/tests/test_scalarmath.py +++ b/numpy/core/tests/test_scalarmath.py @@ -62,13 +62,13 @@ class TestConversion(NumpyTestCase): 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() |