From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 3 Jun 2022 14:18:49 +0000 (-0700) Subject: test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (GH-93467) X-Git-Tag: v3.11.0b4~236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71fae642c0822ea5f0cd261badbfd3e6db2ad9b7;p=thirdparty%2FPython%2Fcpython.git test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (GH-93467) (cherry picked from commit d8f40ead92b5a973cff3a30482a7659d3b46b1ba) Co-authored-by: Victor Stinner --- diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index ca57965bcf10..2339e0049ef6 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):