| 32241 | } |
| 32242 | } |
| 32243 | static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { |
| 32244 | int is_true = x == Py_True; |
| 32245 | if (is_true | (x == Py_False) | (x == Py_None)) return is_true; |
| 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; |
no outgoing calls
no test coverage detected