Skip to content

Commit b2dd5f1

Browse files
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>
1 parent 9c13178 commit b2dd5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/pythoninfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def collect_platform(info_add):
142142
info_add('platform.python_implementation',
143143
platform.python_implementation())
144144
info_add('platform.platform',
145-
platform.platform(aliased=True))
145+
platform.platform(aliased=True, terse=True))
146146

147147

148148
def collect_locale(info_add):

0 commit comments

Comments
 (0)