Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2a9b8bab
Commit
2a9b8bab
authored
Jul 09, 2018
by
Serhiy Storchaka
Committed by
GitHub
Jul 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684)
parent
f85af035
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
13 deletions
+23
-13
Doc/library/platform.rst
Doc/library/platform.rst
+1
-1
Lib/platform.py
Lib/platform.py
+13
-11
Lib/test/test_platform.py
Lib/test/test_platform.py
+7
-1
Misc/NEWS.d/next/Library/2018-06-13-20-33-29.bpo-26544.hQ1oMt.rst
...S.d/next/Library/2018-06-13-20-33-29.bpo-26544.hQ1oMt.rst
+2
-0
No files found.
Doc/library/platform.rst
View file @
2a9b8bab
...
...
@@ -243,7 +243,7 @@ Mac OS Platform
Unix Platforms
--------------
.. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=
2048
)
.. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=
16384
)
Tries to determine the libc version against which the file executable (defaults
to the Python interpreter) is linked. Returns a tuple of strings ``(lib,
...
...
Lib/platform.py
View file @
2a9b8bab
...
...
@@ -140,9 +140,7 @@ _libc_search = re.compile(b'(__libc_init)'
b'|'
br'(libc(_\
w+)?
\.so(?:\
.(
\d[0-9.]*))?)'
,
re
.
ASCII
)
def
libc_ver
(
executable
=
sys
.
executable
,
lib
=
''
,
version
=
''
,
chunksize
=
16384
):
def
libc_ver
(
executable
=
sys
.
executable
,
lib
=
''
,
version
=
''
,
chunksize
=
16384
):
""" Tries to determine the libc version that the file executable
(which defaults to the Python interpreter) is linked against.
...
...
@@ -157,6 +155,7 @@ def libc_ver(executable=sys.executable, lib='', version='',
The file is read and scanned in chunks of chunksize bytes.
"""
from
distutils.version
import
LooseVersion
as
V
if
hasattr
(
os
.
path
,
'realpath'
):
# Python 2.2 introduced os.path.realpath(); it is used
# here to work around problems with Cygwin not being
...
...
@@ -165,17 +164,19 @@ def libc_ver(executable=sys.executable, lib='', version='',
with
open
(
executable
,
'rb'
)
as
f
:
binary
=
f
.
read
(
chunksize
)
pos
=
0
while
1
:
while
pos
<
len
(
binary
)
:
if
b'libc'
in
binary
or
b'GLIBC'
in
binary
:
m
=
_libc_search
.
search
(
binary
,
pos
)
else
:
m
=
None
if
not
m
:
binary
=
f
.
read
(
chunksize
)
if
not
binary
:
b
rea
k
if
not
m
or
m
.
end
()
==
len
(
binary
)
:
chunk
=
f
.
read
(
chunksize
)
if
chunk
:
b
inary
=
binary
[
max
(
pos
,
len
(
binary
)
-
1000
):]
+
chun
k
pos
=
0
continue
if
not
m
:
break
libcinit
,
glibc
,
glibcversion
,
so
,
threads
,
soversion
=
[
s
.
decode
(
'latin1'
)
if
s
is
not
None
else
s
for
s
in
m
.
groups
()]
...
...
@@ -185,12 +186,12 @@ def libc_ver(executable=sys.executable, lib='', version='',
if
lib
!=
'glibc'
:
lib
=
'glibc'
version
=
glibcversion
elif
glibcversion
>
version
:
elif
V
(
glibcversion
)
>
V
(
version
)
:
version
=
glibcversion
elif
so
:
if
lib
!=
'glibc'
:
lib
=
'libc'
if
soversion
and
soversion
>
version
:
if
soversion
and
(
not
version
or
V
(
soversion
)
>
V
(
version
))
:
version
=
soversion
if
threads
and
version
[
-
len
(
threads
):]
!=
threads
:
version
=
version
+
threads
...
...
@@ -253,6 +254,7 @@ def popen(cmd, mode='r', bufsize=-1):
warnings
.
warn
(
'use os.popen instead'
,
DeprecationWarning
,
stacklevel
=
2
)
return
os
.
popen
(
cmd
,
mode
,
bufsize
)
def
_norm_version
(
version
,
build
=
''
):
""" Normalize the version and build strings and return a single
...
...
Lib/test/test_platform.py
View file @
2a9b8bab
...
...
@@ -260,7 +260,6 @@ class PlatformTest(unittest.TestCase):
self
.
assertEqual
(
sts
,
0
)
def
test_libc_ver
(
self
):
import
os
if
os
.
path
.
isdir
(
sys
.
executable
)
and
\
os
.
path
.
exists
(
sys
.
executable
+
'.exe'
):
# Cygwin horror
...
...
@@ -269,6 +268,13 @@ class PlatformTest(unittest.TestCase):
executable
=
sys
.
executable
res
=
platform
.
libc_ver
(
executable
)
self
.
addCleanup
(
support
.
unlink
,
support
.
TESTFN
)
with
open
(
support
.
TESTFN
,
'wb'
)
as
f
:
f
.
write
(
b'x'
*
(
16384
-
10
))
f
.
write
(
b'GLIBC_1.23.4
\
0
GLIBC_1.9
\
0
GLIBC_1.21
\
0
'
)
self
.
assertEqual
(
platform
.
libc_ver
(
support
.
TESTFN
),
(
'glibc'
,
'1.23.4'
))
def
test_popen
(
self
):
mswindows
=
(
sys
.
platform
==
"win32"
)
...
...
Misc/NEWS.d/next/Library/2018-06-13-20-33-29.bpo-26544.hQ1oMt.rst
0 → 100644
View file @
2a9b8bab
Fixed implementation of :func:`platform.libc_ver`. It almost always returned
version '2.9' for glibc.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment