(op: *mut PyObject)
| 15 | |
| 16 | #[inline(always)] |
| 17 | pub unsafe fn PyLong_Check(op: *mut PyObject) -> c_int { |
| 18 | PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS) |
| 19 | } |
| 20 | |
| 21 | #[inline(always)] |
| 22 | pub unsafe fn PyLong_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected