| 3104 | } |
| 3105 | |
| 3106 | static PyObject * |
| 3107 | array_fastCopyAndTranspose(PyObject *NPY_UNUSED(dummy), PyObject *args) |
| 3108 | { |
| 3109 | PyObject *a0; |
| 3110 | |
| 3111 | if (!PyArg_ParseTuple(args, "O:fastCopyAndTranspose", &a0)) { |
| 3112 | return NULL; |
| 3113 | } |
| 3114 | return PyArray_Return((PyArrayObject *)PyArray_CopyAndTranspose(a0)); |
| 3115 | } |
| 3116 | |
| 3117 | static PyObject * |
| 3118 | array_correlate(PyObject *NPY_UNUSED(dummy), |
nothing calls this directly
no test coverage detected