| 32 | } |
| 33 | |
| 34 | static PyObject * |
| 35 | array_flags_get(PyArrayObject *self, void *NPY_UNUSED(ignored)) |
| 36 | { |
| 37 | return PyArray_NewFlagsObject((PyObject *)self); |
| 38 | } |
| 39 | |
| 40 | static PyObject * |
| 41 | array_shape_get(PyArrayObject *self, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected