(op: *mut PyObject)
| 22 | |
| 23 | #[inline(always)] |
| 24 | pub unsafe fn PyInt_Check(op: *mut PyObject) -> c_int { |
| 25 | PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_INT_SUBCLASS) |
| 26 | } |
| 27 | |
| 28 | #[inline(always)] |
| 29 | pub unsafe fn PyInt_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected