(self)
| 139 | assert_(w[0].category is RuntimeWarning) |
| 140 | |
| 141 | def test_ptp(self): |
| 142 | a = [3, 4, 5, 10, -3, -5, 6.0] |
| 143 | assert_equal(np.ptp(a, axis=0), 15.0) |
| 144 | |
| 145 | def test_prod(self): |
| 146 | arr = [[1, 2, 3, 4], |
nothing calls this directly
no test coverage detected