commit | 71ca738f4cd2696d056d0cdb83bebd576f98ccc2 | [log] [tgz] |
---|---|---|
author | Xiang Zhang <angwerzx@126.com> | Wed Jun 20 01:32:49 2018 +0800 |
committer | GitHub <noreply@github.com> | Wed Jun 20 01:32:49 2018 +0800 |
tree | 18b8b40bb3cc65b8924252105519ba26edada54a | |
parent | 13c79c677f9ec9437c82eda72fa1c2d288d8fceb [diff] [blame] |
set terse to True when calling platform.platform in test.pythoninfo (GH-7797)
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py index 9242a36..4a563e9 100644 --- a/Lib/test/pythoninfo.py +++ b/Lib/test/pythoninfo.py
@@ -142,7 +142,7 @@ info_add('platform.python_implementation', platform.python_implementation()) info_add('platform.platform', - platform.platform(aliased=True)) + platform.platform(aliased=True, terse=True)) def collect_locale(info_add):