diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-09 08:47:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-09 08:47:45 (GMT) |
commit | 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d (patch) | |
tree | 6efcfbee7390ccdf8d969068b603b707fa769b27 /Doc | |
parent | f85af035c5cb9a981f5e3164425f27cf73231b5f (diff) | |
download | cpython-2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d.zip cpython-2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d.tar.gz cpython-2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d.tar.bz2 |
bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/platform.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index 5b2ff1b..92691fc 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -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, |