| 427 | } |
| 428 | |
| 429 | static PyObject * |
| 430 | array_size_get(PyArrayObject *self, void* NPY_UNUSED(ignored)) |
| 431 | { |
| 432 | return PyArray_PyIntFromIntp(PyArray_SIZE(self)); |
| 433 | } |
| 434 | |
| 435 | static PyObject * |
| 436 | array_nbytes_get(PyArrayObject *self, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected