(self)
| 93 | assert_array_equal(a[indices], out) |
| 94 | |
| 95 | def test_empty_argpartition(self): |
| 96 | # In reference to github issue #6530 |
| 97 | a = np.array([0, 2, 4, 6, 8, 10]) |
| 98 | a = a.argpartition(np.array([], dtype=np.int16)) |
| 99 | |
| 100 | b = np.array([0, 1, 2, 3, 4, 5]) |
| 101 | assert_array_equal(a, b) |
| 102 | |
| 103 | |
| 104 | class TestPutMask: |
nothing calls this directly
no test coverage detected