(self)
| 1697 | assert_(np.all(a)) |
| 1698 | |
| 1699 | def test_large_float_sum(self): |
| 1700 | a = np.arange(10000, dtype='f') |
| 1701 | assert_equal(a.sum(dtype='d'), a.astype('d').sum()) |
| 1702 | |
| 1703 | def test_ufunc_casting_out(self): |
| 1704 | a = np.array(1.0, dtype=np.float32) |
nothing calls this directly
no test coverage detected