| 229 | } |
| 230 | |
| 231 | static PyObject * |
| 232 | array_protocol_strides_get(PyArrayObject *self) |
| 233 | { |
| 234 | if (PyArray_ISCONTIGUOUS(self)) { |
| 235 | Py_RETURN_NONE; |
| 236 | } |
| 237 | return PyArray_IntTupleFromIntp(PyArray_NDIM(self), PyArray_STRIDES(self)); |
| 238 | } |
| 239 | |
| 240 | |
| 241 |
no test coverage detected