bpo-33717: set terse to True when calling platform.platform in test.p… · python/cpython@b2dd5f1 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit b2dd5f1

miss-islingtonzhangyangyu

and

committed

bpo-33717: set terse to True when calling platform.platform in test.pythoninfo (GH-7797) (GH-7803)

(cherry picked from commit 71ca738) Co-authored-by: Xiang Zhang angwerzx@126.com

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -142,7 +142,7 @@ def collect_platform(info_add):
142 142 info_add('platform.python_implementation',
143 143 platform.python_implementation())
144 144 info_add('platform.platform',
145 -platform.platform(aliased=True))
145 +platform.platform(aliased=True, terse=True))
146 146
147 147
148 148 def collect_locale(info_add):