| 206 | NPY_ARRAY_C_CONTIGUOUS, carray) |
| 207 | |
| 208 | static PyObject * |
| 209 | arrayflags_forc_get(PyArrayFlagsObject *self, void *NPY_UNUSED(ignored)) |
| 210 | { |
| 211 | PyObject *item; |
| 212 | |
| 213 | if (((self->flags & NPY_ARRAY_F_CONTIGUOUS) == NPY_ARRAY_F_CONTIGUOUS) || |
| 214 | ((self->flags & NPY_ARRAY_C_CONTIGUOUS) == NPY_ARRAY_C_CONTIGUOUS)) { |
| 215 | item = Py_True; |
| 216 | } |
| 217 | else { |
| 218 | item = Py_False; |
| 219 | } |
| 220 | Py_INCREF(item); |
| 221 | return item; |
| 222 | } |
| 223 | |
| 224 | static PyObject * |
| 225 | arrayflags_fnc_get(PyArrayFlagsObject *self, void *NPY_UNUSED(ignored)) |
no outgoing calls
no test coverage detected