(self)
| 5154 | self.tst_basic(x.astype("S3")) |
| 5155 | |
| 5156 | def test_raise(self): |
| 5157 | x = np.random.random(24)*100 |
| 5158 | x.shape = 2, 3, 4 |
| 5159 | assert_raises(IndexError, x.take, [0, 1, 2], axis=0) |
| 5160 | assert_raises(IndexError, x.take, [-3], axis=0) |
| 5161 | assert_array_equal(x.take([-1], axis=0)[0], x[1]) |
| 5162 | |
| 5163 | def test_clip(self): |
| 5164 | x = np.random.random(24)*100 |
nothing calls this directly
no test coverage detected