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

(cherry picked from commit d8f40ead92)

Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
Miss Islington (bot) 2022-06-03 07:18:49 -07:00 committed by GitHub
parent 74b91b1763
commit 71fae642c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):