]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (GH-93467)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 3 Jun 2022 14:08:21 +0000 (07:08 -0700)
committerGitHub <noreply@github.com>
Fri, 3 Jun 2022 14:08:21 +0000 (07:08 -0700)
(cherry picked from commit d8f40ead92b5a973cff3a30482a7659d3b46b1ba)

Co-authored-by: Victor Stinner <vstinner@python.org>
Lib/test/pythoninfo.py

index 479e60b16b691b7bf1e5297d77abbf8db03147e6..eef34f081218112ab985bf097aedc4db25f527c3 100644 (file)
@@ -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):