(self, dtype)
| 5175 | |
| 5176 | @pytest.mark.parametrize('dtype', ('>i4', '<i4')) |
| 5177 | def test_byteorder(self, dtype): |
| 5178 | x = np.array([1, 2, 3], dtype) |
| 5179 | assert_array_equal(x.take([0, 2, 1]), [1, 3, 2]) |
| 5180 | |
| 5181 | def test_record_array(self): |
| 5182 | # Note mixed byteorder. |
nothing calls this directly
no test coverage detected