(self)
| 5860 | assert_equal(out, tgt) |
| 5861 | |
| 5862 | def test_truncate(self): |
| 5863 | tgt = [[1], [6]] |
| 5864 | arr = np.arange(10).reshape(2, 5) |
| 5865 | out = np.compress([0, 1], arr, axis=1) |
| 5866 | assert_equal(out, tgt) |
| 5867 | |
| 5868 | def test_flatten(self): |
| 5869 | arr = np.arange(10).reshape(2, 5) |
nothing calls this directly
no test coverage detected