(self)
| 5253 | assert_array_equal(idx, np.lexsort((u, v))) |
| 5254 | |
| 5255 | def test_invalid_axis(self): # gh-7528 |
| 5256 | x = np.linspace(0., 1., 42*3).reshape(42, 3) |
| 5257 | assert_raises(np.AxisError, np.lexsort, x, axis=2) |
| 5258 | |
| 5259 | class TestIO: |
| 5260 | """Test tofile, fromfile, tobytes, and fromstring""" |
nothing calls this directly
no test coverage detected