[Python-checkins] test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (#93467)

vstinner webhook-mailer at python.org
Fri Jun 3 09:47:00 EDT 2022


https://github.com/python/cpython/commit/d8f40ead92b5a973cff3a30482a7659d3b46b1ba
commit: d8f40ead92b5a973cff3a30482a7659d3b46b1ba
branch: main
author: Victor Stinner <vstinner at python.org>
committer: vstinner <vstinner at python.org>
date: 2022-06-03T15:46:41+02:00
summary:

test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (#93467)

files:
M Lib/test/pythoninfo.py

diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index ca57965bcf105..2339e0049ef6e 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):



More information about the Python-checkins mailing list