(self)
| 3621 | test = sort(a, endwith=False) |
| 3622 | |
| 3623 | def test_argsort(self): |
| 3624 | # Test argsort |
| 3625 | a = array([1, 5, 2, 4, 3], mask=[1, 0, 0, 1, 0]) |
| 3626 | assert_equal(np.argsort(a), argsort(a)) |
| 3627 | |
| 3628 | def test_squeeze(self): |
| 3629 | # Check squeeze |
nothing calls this directly
no test coverage detected