NUMPY_API*/
| 2550 | |
| 2551 | /*NUMPY_API*/ |
| 2552 | NPY_NO_EXPORT PyObject * |
| 2553 | PyArray_EnsureAnyArray(PyObject *op) |
| 2554 | { |
| 2555 | if (op && PyArray_Check(op)) { |
| 2556 | return op; |
| 2557 | } |
| 2558 | return PyArray_EnsureArray(op); |
| 2559 | } |
| 2560 | |
| 2561 | /* |
| 2562 | * Private implementation of PyArray_CopyAnyInto with an additional order |
no test coverage detected