(op: *mut PyObject)
| 830 | |
| 831 | #[inline(always)] |
| 832 | pub unsafe fn Py_XDECREF(op: *mut PyObject) { |
| 833 | if !op.is_null() { |
| 834 | Py_DECREF(op) |
| 835 | } |
| 836 | } |
| 837 | |
| 838 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 839 | extern "C" { |
nothing calls this directly
no test coverage detected