(op: *mut PyObject)
| 42 | |
| 43 | #[inline(always)] |
| 44 | pub unsafe fn PyDictValues_Check(op: *mut PyObject) -> c_int { |
| 45 | PyObject_TypeCheck(op, &mut PyDictValues_Type) |
| 46 | } |
| 47 | |
| 48 | #[inline(always)] |
| 49 | pub unsafe fn PyDictViewSet_Check(op: *mut PyObject) -> c_int { |
nothing calls this directly
no test coverage detected