(self)
| 1743 | # it is designed to simulate an old API |
| 1744 | # expectation to guard against regression |
| 1745 | def squeeze(self): |
| 1746 | return super().squeeze() |
| 1747 | |
| 1748 | oldsqueeze = OldSqueeze(np.array([[1],[2],[3]])) |
| 1749 |
no outgoing calls
no test coverage detected