| 358 | |
| 359 | |
| 360 | static PyObject * |
| 361 | array_swapaxes(PyArrayObject *self, PyObject *args) |
| 362 | { |
| 363 | int axis1, axis2; |
| 364 | |
| 365 | if (!PyArg_ParseTuple(args, "ii:swapaxes", &axis1, &axis2)) { |
| 366 | return NULL; |
| 367 | } |
| 368 | return PyArray_SwapAxes(self, axis1, axis2); |
| 369 | } |
| 370 | |
| 371 | |
| 372 | /*NUMPY_API |
nothing calls this directly
no test coverage detected