(op: *mut PyObject)
| 32 | |
| 33 | #[inline(always)] |
| 34 | pub unsafe fn PyWeakref_Check(op: *mut PyObject) -> c_int { |
| 35 | (PyWeakref_CheckRef(op) != 0 || PyWeakref_CheckProxy(op) != 0) as c_int |
| 36 | } |
| 37 | |
| 38 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 39 | extern "C" { |
nothing calls this directly
no test coverage detected