Skip to content

Commit 8ebc9fc

Browse files
authored
gh-102304: Rename _Py_IncRefTotal_DO_NOT_USE_THIS() (#107193)
* Rename _Py_IncRefTotal_DO_NOT_USE_THIS() to _Py_INCREF_IncRefTotal() * Rename _Py_DecRefTotal_DO_NOT_USE_THIS() to _Py_DECREF_DecRefTotal() * Remove temporary _Py_INC_REFTOTAL() and _Py_DEC_REFTOTAL() macros
1 parent e717b47 commit 8ebc9fc

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

Include/object.h

+4-9
Original file line numberDiff line numberDiff line change
@@ -594,10 +594,8 @@ you can count such references to the type object.)
594594
#if defined(Py_REF_DEBUG) && !defined(Py_LIMITED_API)
595595
PyAPI_FUNC(void) _Py_NegativeRefcount(const char *filename, int lineno,
596596
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);
601599
#endif // Py_REF_DEBUG && !Py_LIMITED_API
602600

603601
PyAPI_FUNC(void) _Py_Dealloc(PyObject *);
@@ -646,7 +644,7 @@ static inline Py_ALWAYS_INLINE void Py_INCREF(PyObject *op)
646644
#endif
647645
_Py_INCREF_STAT_INC();
648646
#ifdef Py_REF_DEBUG
649-
_Py_INC_REFTOTAL();
647+
_Py_INCREF_IncRefTotal();
650648
#endif
651649
#endif
652650
}
@@ -675,7 +673,7 @@ static inline void Py_DECREF(const char *filename, int lineno, PyObject *op)
675673
return;
676674
}
677675
_Py_DECREF_STAT_INC();
678-
_Py_DEC_REFTOTAL();
676+
_Py_DECREF_DecRefTotal();
679677
if (--op->ob_refcnt != 0) {
680678
if (op->ob_refcnt < 0) {
681679
_Py_NegativeRefcount(filename, lineno, op);
@@ -703,9 +701,6 @@ static inline Py_ALWAYS_INLINE void Py_DECREF(PyObject *op)
703701
#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
704702
#endif
705703

706-
#undef _Py_INC_REFTOTAL
707-
#undef _Py_DEC_REFTOTAL
708-
709704

710705
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
711706
* and tp_dealloc implementations.

Objects/object.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,14 @@ _Py_NegativeRefcount(const char *filename, int lineno, PyObject *op)
207207

208208
/* This is used strictly by Py_INCREF(). */
209209
void
210-
_Py_IncRefTotal_DO_NOT_USE_THIS(void)
210+
_Py_INCREF_IncRefTotal(void)
211211
{
212212
reftotal_increment(_PyInterpreterState_GET());
213213
}
214214

215215
/* This is used strictly by Py_DECREF(). */
216216
void
217-
_Py_DecRefTotal_DO_NOT_USE_THIS(void)
217+
_Py_DECREF_DecRefTotal(void)
218218
{
219219
reftotal_decrement(_PyInterpreterState_GET());
220220
}

0 commit comments

Comments
 (0)