GetItemInt */
| 25590 | |
| 25591 | /* GetItemInt */ |
| 25592 | static PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { |
| 25593 | PyObject *r; |
| 25594 | if (unlikely(!j)) return NULL; |
| 25595 | r = PyObject_GetItem(o, j); |
| 25596 | Py_DECREF(j); |
| 25597 | return r; |
| 25598 | } |
| 25599 | static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i, |
| 25600 | CYTHON_NCP_UNUSED int wraparound, |
| 25601 | CYTHON_NCP_UNUSED int boundscheck) { |
no outgoing calls
no test coverage detected