Home
last modified time | relevance | path

Searched refs:libc_ver (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_platform.py285 platform.libc_ver(executable)
292 self.assertEqual(platform.libc_ver(), ('mock', '1.0'))
307 self.assertEqual(platform.libc_ver(executable=filename),
317 self.assertEqual(platform.libc_ver(filename, chunksize=chunksize),
Dpythoninfo.py148 libc_ver = ('%s %s' % platform.libc_ver()).strip()
149 if libc_ver:
150 info_add('platform.libc_ver', libc_ver)
Dtest_time.py435 @unittest.skipUnless(platform.libc_ver()[0] != 'glibc',
/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-06-13-20-33-29.bpo-26544.hQ1oMt.rst1 Fixed implementation of :func:`platform.libc_ver`. It almost always returned
/external/python/setuptools/setuptools/
Dglibc.py76 def libc_ver(): function
/external/python/cpython2/Lib/test/
Dtest_platform.py256 res = platform.libc_ver(executable)
262 self.assertEqual(platform.libc_ver(support.TESTFN),
/external/python/cpython3/Lib/
Dplatform.py162 def libc_ver(executable=None, lib='', version='', chunksize=16384): function
1220 libcname, libcversion = libc_ver()
/external/python/cpython2/Lib/
Dplatform.py172 def libc_ver(executable=sys.executable,lib='',version='', chunksize=2048): function
1608 libcname,libcversion = libc_ver(sys.executable)
/external/python/cpython3/Doc/library/
Dplatform.rst245 .. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=16384)
/external/python/cpython2/Doc/library/
Dplatform.rst279 .. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=2048)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst2297 :func:`platform.libc_ver` now uses ``os.confstr('CS_GNU_LIBC_VERSION')`` if
4172 Fixed implementation of :func:`platform.libc_ver`. It almost always returned