(self)
| 5051 | assert_equal(out, tgt) |
| 5052 | |
| 5053 | def test_flatten(self): |
| 5054 | arr = np.arange(10).reshape(2, 5) |
| 5055 | out = np.compress([0, 1], arr) |
| 5056 | assert_equal(out, 1) |
| 5057 | |
| 5058 | |
| 5059 | class TestPutmask: |
nothing calls this directly
no test coverage detected