(op: *mut PyObject)
| 931 | |
| 932 | #[inline(always)] |
| 933 | pub unsafe fn Py_XDECREF(op: *mut PyObject) { |
| 934 | if !op.is_null() { |
| 935 | Py_DECREF(op) |
| 936 | } |
| 937 | } |
| 938 | |
| 939 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 940 | extern "C" { |
nothing calls this directly
no test coverage detected