(op: *mut PyObject)
| 47 | |
| 48 | #[inline(always)] |
| 49 | pub unsafe fn PyDictViewSet_Check(op: *mut PyObject) -> c_int { |
| 50 | (PyDictKeys_Check(op) != 0 || PyDictItems_Check(op) != 0) as c_int |
| 51 | } |
| 52 | |
| 53 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 54 | extern "C" { |
nothing calls this directly
no test coverage detected