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

miss-islington webhook-mailer at python.org
Fri Jun 3 10:08:26 EDT 2022


https://github.com/python/cpython/commit/9cdfd1b01aee8bd624c2fb5f5447e0ad5858ff03
commit: 9cdfd1b01aee8bd624c2fb5f5447e0ad5858ff03
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-06-03T07:08:21-07:00
summary:

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

(cherry picked from commit d8f40ead92b5a973cff3a30482a7659d3b46b1ba)

Co-authored-by: Victor Stinner <vstinner at python.org>

files:
M Lib/test/pythoninfo.py

diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index 479e60b16b691..eef34f0812181 100644
--- a/Lib/test/pythoninfo.py
+++ b/Lib/test/pythoninfo.py
@@ -142,7 +142,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