Skip to content

Commit 71ca738

Browse files
authored
set terse to True when calling platform.platform in test.pythoninfo (GH-7797)
1 parent 13c79c6 commit 71ca738

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)