(self)
| 776 | x.transpose(list(range(16))) # Should succeed |
| 777 | |
| 778 | def test_string_mergesort(self): |
| 779 | # Ticket #540 |
| 780 | x = np.array(['a']*32) |
| 781 | assert_array_equal(x.argsort(kind='m'), np.arange(32)) |
| 782 | |
| 783 | def test_argmax_byteorder(self): |
| 784 | # Ticket #546 |
nothing calls this directly
no test coverage detected