(op: *mut PyObject)
| 894 | // Reference counting macros. |
| 895 | #[inline(always)] |
| 896 | pub unsafe fn Py_INCREF(op: *mut PyObject) { |
| 897 | if cfg!(py_sys_config = "Py_REF_DEBUG") { |
| 898 | Py_IncRef(op) |
| 899 | } else { |
| 900 | (*op).ob_refcnt += 1 |
| 901 | } |
| 902 | } |
| 903 | |
| 904 | #[inline(always)] |
| 905 | pub unsafe fn Py_DECREF(op: *mut PyObject) { |
no outgoing calls
no test coverage detected