| 926 | } |
| 927 | |
| 928 | static PyObject * |
| 929 | array_transpose_get(PyArrayObject *self, void *NPY_UNUSED(ignored)) |
| 930 | { |
| 931 | return PyArray_Transpose(self, NULL); |
| 932 | } |
| 933 | |
| 934 | NPY_NO_EXPORT PyGetSetDef array_getsetlist[] = { |
| 935 | {"ndim", |
nothing calls this directly
no test coverage detected