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

This commit is contained in:
Victor Stinner 2022-06-03 15:46:41 +02:00 committed by GitHub
parent debf4c1ec5
commit d8f40ead92
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):