(obj: *mut PyObject)
| 28 | |
| 29 | #[inline(always)] |
| 30 | pub unsafe fn Py_IsFalse(obj: *mut PyObject) -> c_int { |
| 31 | (obj == Py_False()) as c_int |
| 32 | } |
| 33 | |
| 34 | #[inline(always)] |
| 35 | pub unsafe fn Py_IsTrue(obj: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected