(op: *mut PyObject)
| 793 | // Reference counting macros. |
| 794 | #[inline(always)] |
| 795 | pub unsafe fn Py_INCREF(op: *mut PyObject) { |
| 796 | if cfg!(py_sys_config = "Py_REF_DEBUG") { |
| 797 | Py_IncRef(op) |
| 798 | } else { |
| 799 | (*op).ob_refcnt += 1 |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | #[inline(always)] |
| 804 | pub unsafe fn Py_DECREF(op: *mut PyObject) { |