(self)
| 5866 | assert_equal(out, tgt) |
| 5867 | |
| 5868 | def test_flatten(self): |
| 5869 | arr = np.arange(10).reshape(2, 5) |
| 5870 | out = np.compress([0, 1], arr) |
| 5871 | assert_equal(out, 1) |
| 5872 | |
| 5873 | |
| 5874 | class TestPutmask: |
nothing calls this directly
no test coverage detected