| 103 | |
| 104 | |
| 105 | static PyObject * |
| 106 | array_strides_get(PyArrayObject *self, void *NPY_UNUSED(ignored)) |
| 107 | { |
| 108 | return PyArray_IntTupleFromIntp(PyArray_NDIM(self), PyArray_STRIDES(self)); |
| 109 | } |
| 110 | |
| 111 | static int |
| 112 | array_strides_set(PyArrayObject *self, PyObject *obj, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected