| 4446 | |
| 4447 | |
| 4448 | static PyObject * |
| 4449 | array_may_share_memory(PyObject *NPY_UNUSED(ignored), PyObject *args, PyObject *kwds) |
| 4450 | { |
| 4451 | return array_shares_memory_impl(args, kwds, NPY_MAY_SHARE_BOUNDS, 0); |
| 4452 | } |
| 4453 | |
| 4454 | static PyObject * |
| 4455 | normalize_axis_index(PyObject *NPY_UNUSED(self), |
nothing calls this directly
no test coverage detected