(self)
| 151 | assert_(w[0].category is RuntimeWarning) |
| 152 | |
| 153 | def test_ptp(self): |
| 154 | a = [3, 4, 5, 10, -3, -5, 6.0] |
| 155 | assert_equal(np.ptp(a, axis=0), 15.0) |
| 156 | |
| 157 | def test_prod(self): |
| 158 | arr = [[1, 2, 3, 4], |
nothing calls this directly
no test coverage detected