From d8f40ead92b5a973cff3a30482a7659d3b46b1ba Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 3 Jun 2022 15:46:41 +0200 Subject: test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (#93467) --- Lib/test/pythoninfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index ca57965..2339e00 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -144,7 +144,7 @@ def collect_sys(info_add): text = 'Yes (sys.getobjects() present)' else: text = 'No (sys.getobjects() missing)' - info_add('build.Py_REF_DEBUG', text) + info_add('build.Py_TRACE_REFS', text) def collect_platform(info_add): -- cgit v0.12