summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2017-09-14 07:35:58 (GMT)
committerGitHub <noreply@github.com>2017-09-14 07:35:58 (GMT)
commitdae0276bb6bc7281d59fb0b8f1aab31634ee80dc (patch)
treed36e7b49ee6ef1cdb2a2384be568c8d28a7b0bb0 /Include/object.h
parent93c92f7d1dbb6e7e472f1d0444c6968858113de2 (diff)
downloadcpython-dae0276bb6bc7281d59fb0b8f1aab31634ee80dc.zip
cpython-dae0276bb6bc7281d59fb0b8f1aab31634ee80dc.tar.gz
cpython-dae0276bb6bc7281d59fb0b8f1aab31634ee80dc.tar.bz2
bpo-30860: Fix a refleak. (#3567)
Resolves bpo-31420. (This was accidentally reverted when in #3565.)
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Include/object.h b/Include/object.h
index b46d4c3..9bb780e 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -727,14 +727,13 @@ PyAPI_FUNC(Py_ssize_t) _Py_GetRefTotal(void);
/* Py_REF_DEBUG also controls the display of refcounts and memory block
* allocations at the interactive prompt and at interpreter shutdown
*/
+PyAPI_FUNC(PyObject *) _PyDebug_XOptionShowRefCount(void);
PyAPI_FUNC(void) _PyDebug_PrintTotalRefs(void);
-#define _PY_DEBUG_PRINT_TOTAL_REFS() _PyDebug_PrintTotalRefs()
#else
#define _Py_INC_REFTOTAL
#define _Py_DEC_REFTOTAL
#define _Py_REF_DEBUG_COMMA
#define _Py_CHECK_REFCNT(OP) /* a semicolon */;
-#define _PY_DEBUG_PRINT_TOTAL_REFS()
#endif /* Py_REF_DEBUG */
#ifdef COUNT_ALLOCS