diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-03 07:08:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 07:08:21 -0700 |
commit | 9cdfd1b01aee8bd624c2fb5f5447e0ad5858ff03 (patch) | |
tree | 23c7e50159ceae194b65f05451d429c9254edcd9 | |
parent | gh-93418: Fix an assert when an f-string expression is followed by an '=', bu... (diff) | |
download | cpython-9cdfd1b01aee8bd624c2fb5f5447e0ad5858ff03.tar.gz cpython-9cdfd1b01aee8bd624c2fb5f5447e0ad5858ff03.tar.bz2 cpython-9cdfd1b01aee8bd624c2fb5f5447e0ad5858ff03.zip |
test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (GH-93467)
(cherry picked from commit d8f40ead92b5a973cff3a30482a7659d3b46b1ba)
Co-authored-by: Victor Stinner <vstinner@python.org>
-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 479e60b16b6..eef34f08121 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py @@ -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): |