diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-03 13:46:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 13:46:41 (GMT) |
commit | d8f40ead92b5a973cff3a30482a7659d3b46b1ba (patch) | |
tree | 97e9888f659c63e088edddf608bb1cbfe0216250 | |
parent | debf4c1ec5f0bae44d50f889b8a7dc0c3ea1fc9d (diff) | |
download | cpython-d8f40ead92b5a973cff3a30482a7659d3b46b1ba.zip cpython-d8f40ead92b5a973cff3a30482a7659d3b46b1ba.tar.gz cpython-d8f40ead92b5a973cff3a30482a7659d3b46b1ba.tar.bz2 |
test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (#93467)
-rw-r--r-- | Lib/test/pythoninfo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index ca57965..2339e00 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): |