(self, *shape, order="C")
| 400 | return _funcs.transpose(self, axes) |
| 401 | |
| 402 | def reshape(self, *shape, order="C"): |
| 403 | # arr.reshape(shape) and arr.reshape(*shape) |
| 404 | return _funcs.reshape(self, shape, order=order) |
| 405 | |
| 406 | def sort(self, axis=-1, kind=None, order=None): |
| 407 | # ndarray.sort works in-place |
no outgoing calls