(op: *mut PyObject)
| 924 | |
| 925 | #[inline(always)] |
| 926 | pub unsafe fn Py_XINCREF(op: *mut PyObject) { |
| 927 | if !op.is_null() { |
| 928 | Py_INCREF(op) |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | #[inline(always)] |
| 933 | pub unsafe fn Py_XDECREF(op: *mut PyObject) { |
nothing calls this directly
no test coverage detected