| 907 | } |
| 908 | |
| 909 | NPY_NO_EXPORT PyObject * |
| 910 | array_int(PyArrayObject *v) |
| 911 | { |
| 912 | return array_scalar_forward(v, &PyNumber_Long, " in ndarray.__int__"); |
| 913 | } |
| 914 | |
| 915 | static PyObject * |
| 916 | array_index(PyArrayObject *v) |
nothing calls this directly
no test coverage detected