NUMPY_API*/
| 970 | |
| 971 | /*NUMPY_API*/ |
| 972 | NPY_NO_EXPORT int |
| 973 | PyArray_PyIntAsInt(PyObject *o) |
| 974 | { |
| 975 | return PyArray_PyIntAsInt_ErrMsg(o, "an integer is required"); |
| 976 | } |
| 977 | |
| 978 | static npy_intp |
| 979 | PyArray_PyIntAsIntp_ErrMsg(PyObject *o, const char * msg) |
no test coverage detected