| 4439 | |
| 4440 | |
| 4441 | static PyObject * |
| 4442 | array_shares_memory(PyObject *NPY_UNUSED(ignored), PyObject *args, PyObject *kwds) |
| 4443 | { |
| 4444 | return array_shares_memory_impl(args, kwds, NPY_MAY_SHARE_EXACT, 1); |
| 4445 | } |
| 4446 | |
| 4447 | |
| 4448 | static PyObject * |
nothing calls this directly
no test coverage detected