(self, x)
| 5137 | |
| 5138 | class TestTake: |
| 5139 | def tst_basic(self, x): |
| 5140 | ind = list(range(x.shape[0])) |
| 5141 | assert_array_equal(x.take(ind, axis=0), x) |
| 5142 | |
| 5143 | def test_ip_types(self): |
| 5144 | unchecked_types = [bytes, str, np.void] |
no test coverage detected