mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
bpo-35389: platform.platform() calls libc_ver() without executable (GH-14418)
When libc_ver() is called with an executable, the os.confstr('CS_GNU_LIBC_VERSION') fast-path cannot be taken. Modify platform.platform() to call libc_ver() without executable, instead of calling libc_ver(sys.executable), since sys.executable is already the default value.
This commit is contained in:
parent
4c26abd14f
commit
a719c8f4bd
1 changed files with 1 additions and 1 deletions
|
@ -1202,7 +1202,7 @@ def platform(aliased=0, terse=0):
|
|||
|
||||
elif system in ('Linux',):
|
||||
# check for libc vs. glibc
|
||||
libcname, libcversion = libc_ver(sys.executable)
|
||||
libcname, libcversion = libc_ver()
|
||||
platform = _platform(system, release, machine, processor,
|
||||
'with',
|
||||
libcname+libcversion)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue