(op: *mut PyObject)
| 823 | |
| 824 | #[inline(always)] |
| 825 | pub unsafe fn Py_XINCREF(op: *mut PyObject) { |
| 826 | if !op.is_null() { |
| 827 | Py_INCREF(op) |
| 828 | } |
| 829 | } |
| 830 | |
| 831 | #[inline(always)] |
| 832 | pub unsafe fn Py_XDECREF(op: *mut PyObject) { |
nothing calls this directly
no test coverage detected