(op: *mut PyObject)
| 60 | |
| 61 | #[inline] |
| 62 | pub unsafe fn PyFrame_Check(op: *mut PyObject) -> c_int { |
| 63 | ((*op).ob_type == &mut PyFrame_Type) as c_int |
| 64 | } |
| 65 | |
| 66 | ignore! { |
| 67 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected