(self)
| 1634 | self.check_identityless_reduction(a) |
| 1635 | |
| 1636 | def test_identityless_reduction_forder(self): |
| 1637 | a = np.empty((2, 3, 4), order='F') |
| 1638 | self.check_identityless_reduction(a) |
| 1639 | |
| 1640 | def test_identityless_reduction_otherorder(self): |
| 1641 | a = np.empty((2, 4, 3), order='C').swapaxes(1, 2) |
nothing calls this directly
no test coverage detected