(self)
| 1538 | class TestExtins: |
| 1539 | |
| 1540 | def test_basic(self): |
| 1541 | a = np.array([1, 3, 2, 1, 2, 3, 3]) |
| 1542 | b = extract(a > 1, a) |
| 1543 | assert_array_equal(b, [3, 2, 2, 3, 3]) |
| 1544 | |
| 1545 | def test_place(self): |
| 1546 | # Make sure that non-np.ndarray objects |
nothing calls this directly
no test coverage detected