(op: *mut PyObject)
| 44 | |
| 45 | #[inline(always)] |
| 46 | pub unsafe fn PyWeakref_Check(op: *mut PyObject) -> c_int { |
| 47 | (PyWeakref_CheckRef(op) != 0 || PyWeakref_CheckProxy(op) != 0) as c_int |
| 48 | } |
| 49 | |
| 50 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 51 | extern "C" { |
nothing calls this directly
no test coverage detected