(op: *mut PyObject)
| 9 | |
| 10 | #[inline(always)] |
| 11 | pub unsafe fn PyFile_Check(op: *mut PyObject) -> c_int { |
| 12 | PyObject_TypeCheck(op, &mut PyFile_Type) |
| 13 | } |
| 14 | |
| 15 | #[inline(always)] |
| 16 | pub unsafe fn PyFile_CheckExact(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected