(self, x)
| 5952 | |
| 5953 | class TestTake: |
| 5954 | def tst_basic(self, x): |
| 5955 | ind = list(range(x.shape[0])) |
| 5956 | assert_array_equal(x.take(ind, axis=0), x) |
| 5957 | |
| 5958 | def test_ip_types(self): |
| 5959 | unchecked_types = [bytes, str, np.void] |
no test coverage detected