| 32246 | else return PyObject_IsTrue(x); |
| 32247 | } |
| 32248 | static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { |
| 32249 | int retval; |
| 32250 | if (unlikely(!x)) return -1; |
| 32251 | retval = __Pyx_PyObject_IsTrue(x); |
| 32252 | Py_DECREF(x); |
| 32253 | return retval; |
| 32254 | } |
| 32255 | static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { |
| 32256 | __Pyx_TypeName result_type_name = __Pyx_PyType_GetName(Py_TYPE(result)); |
| 32257 | #if PY_MAJOR_VERSION >= 3 |
no test coverage detected