(self)
| 3835 | test = sort(a, endwith=False) |
| 3836 | |
| 3837 | def test_argsort(self): |
| 3838 | # Test argsort |
| 3839 | a = array([1, 5, 2, 4, 3], mask=[1, 0, 0, 1, 0]) |
| 3840 | assert_equal(np.argsort(a), argsort(a)) |
| 3841 | |
| 3842 | def test_sort_stable_or_descending_throws(self): |
| 3843 | a = array([1, 5, 2, 4, 3], mask=[1, 0, 0, 1, 0]) |
nothing calls this directly
no test coverage detected