| 15042 | } |
| 15043 | } |
| 15044 | static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { |
| 15045 | int is_true = x == Py_True; |
| 15046 | if (is_true | (x == Py_False) | (x == Py_None)) return is_true; |
| 15047 | else return PyObject_IsTrue(x); |
| 15048 | } |
| 15049 | static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { |
| 15050 | int retval; |
| 15051 | if (unlikely(!x)) return -1; |
no outgoing calls
no test coverage detected