| 1315 | /************************* copy_ND_array *******************************/ |
| 1316 | |
| 1317 | extern int |
| 1318 | copy_ND_array(const PyArrayObject *arr, PyArrayObject *out) |
| 1319 | { |
| 1320 | F2PY_REPORT_ON_ARRAY_COPY_FROMARR; |
| 1321 | return PyArray_CopyInto(out, (PyArrayObject *)arr); |
| 1322 | } |
| 1323 | |
| 1324 | /********************* Various utility functions ***********************/ |
| 1325 |
nothing calls this directly
no test coverage detected