@@ -594,10 +594,8 @@ you can count such references to the type object.)
594
594
#if defined(Py_REF_DEBUG ) && !defined(Py_LIMITED_API )
595
595
PyAPI_FUNC (void ) _Py_NegativeRefcount (const char * filename , int lineno ,
596
596
PyObject * op );
597
- PyAPI_FUNC (void ) _Py_IncRefTotal_DO_NOT_USE_THIS (void );
598
- PyAPI_FUNC (void ) _Py_DecRefTotal_DO_NOT_USE_THIS (void );
599
- # define _Py_INC_REFTOTAL () _Py_IncRefTotal_DO_NOT_USE_THIS()
600
- # define _Py_DEC_REFTOTAL () _Py_DecRefTotal_DO_NOT_USE_THIS()
597
+ PyAPI_FUNC (void ) _Py_INCREF_IncRefTotal (void );
598
+ PyAPI_FUNC (void ) _Py_DECREF_DecRefTotal (void );
601
599
#endif // Py_REF_DEBUG && !Py_LIMITED_API
602
600
603
601
PyAPI_FUNC (void ) _Py_Dealloc (PyObject * );
@@ -646,7 +644,7 @@ static inline Py_ALWAYS_INLINE void Py_INCREF(PyObject *op)
646
644
#endif
647
645
_Py_INCREF_STAT_INC ();
648
646
#ifdef Py_REF_DEBUG
649
- _Py_INC_REFTOTAL ();
647
+ _Py_INCREF_IncRefTotal ();
650
648
#endif
651
649
#endif
652
650
}
@@ -675,7 +673,7 @@ static inline void Py_DECREF(const char *filename, int lineno, PyObject *op)
675
673
return ;
676
674
}
677
675
_Py_DECREF_STAT_INC ();
678
- _Py_DEC_REFTOTAL ();
676
+ _Py_DECREF_DecRefTotal ();
679
677
if (-- op -> ob_refcnt != 0 ) {
680
678
if (op -> ob_refcnt < 0 ) {
681
679
_Py_NegativeRefcount (filename , lineno , op );
@@ -703,9 +701,6 @@ static inline Py_ALWAYS_INLINE void Py_DECREF(PyObject *op)
703
701
#define Py_DECREF (op ) Py_DECREF(_PyObject_CAST(op))
704
702
#endif
705
703
706
- #undef _Py_INC_REFTOTAL
707
- #undef _Py_DEC_REFTOTAL
708
-
709
704
710
705
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
711
706
* and tp_dealloc implementations.
0 commit comments