(self)
| 9302 | assert_equal(res, range(5)) |
| 9303 | |
| 9304 | def test_argmin_with_out(self): |
| 9305 | mat = -np.eye(5) |
| 9306 | out = np.empty(5, dtype='i2') |
| 9307 | res = np.argmin(mat, 0, out=out) |
| 9308 | assert_equal(res, range(5)) |
| 9309 | |
| 9310 | def test_insert_noncontiguous(self): |
| 9311 | a = np.arange(6).reshape(2,3).T # force non-c-contiguous |
nothing calls this directly
no test coverage detected