(op: *mut PyObject)
| 26 | |
| 27 | #[inline(always)] |
| 28 | pub unsafe fn PyGen_Check(op: *mut PyObject) -> c_int { |
| 29 | PyObject_TypeCheck(op, &mut PyGen_Type) |
| 30 | } |
| 31 | |
| 32 | #[inline(always)] |
| 33 | pub unsafe fn PyGen_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected