Skip to content

Commit 97cf964

Browse files
committed
Remove duplciate _Py_AddRefTotal from merge commit
1 parent 8311e18 commit 97cf964

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Objects/object.c

-4
Original file line numberDiff line numberDiff line change
@@ -401,10 +401,6 @@ _Py_ExplicitMergeRefcount(PyObject *op, Py_ssize_t extra)
401401
refcnt += (Py_ssize_t)op->ob_ref_local;
402402
refcnt += extra;
403403

404-
#ifdef Py_REF_DEBUG
405-
_Py_AddRefTotal(_PyInterpreterState_GET(), extra);
406-
#endif
407-
408404
new_shared = _Py_REF_SHARED(refcnt, _Py_REF_MERGED);
409405
} while (!_Py_atomic_compare_exchange_ssize(&op->ob_ref_shared,
410406
&shared, new_shared));

0 commit comments

Comments
 (0)