Commit 848acf72 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-35389: test.pythoninfo logs platform.libc_ver (GH-10951)

parent 2d8f976c
......@@ -144,6 +144,10 @@ def collect_platform(info_add):
info_add('platform.platform',
platform.platform(aliased=True))
libc_ver = ('%s %s' % platform.libc_ver()).strip()
if libc_ver:
info_add('platform.libc_ver', libc_ver)
def collect_locale(info_add):
import locale
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment