(self)
| 1630 | assert res[-1] == 4 |
| 1631 | |
| 1632 | def test_identityless_reduction_corder(self): |
| 1633 | a = np.empty((2, 3, 4), order='C') |
| 1634 | self.check_identityless_reduction(a) |
| 1635 | |
| 1636 | def test_identityless_reduction_forder(self): |
| 1637 | a = np.empty((2, 3, 4), order='F') |
nothing calls this directly
no test coverage detected