Searched refs:libc_ver (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_platform.py | 285 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),
|
D | pythoninfo.py | 148 libc_ver = ('%s %s' % platform.libc_ver()).strip() 149 if libc_ver: 150 info_add('platform.libc_ver', libc_ver)
|
D | test_time.py | 435 @unittest.skipUnless(platform.libc_ver()[0] != 'glibc',
|
/external/python/cpython2/Misc/NEWS.d/next/Library/ |
D | 2018-06-13-20-33-29.bpo-26544.hQ1oMt.rst | 1 Fixed implementation of :func:`platform.libc_ver`. It almost always returned
|
/external/python/setuptools/setuptools/ |
D | glibc.py | 76 def libc_ver(): function
|
/external/python/cpython2/Lib/test/ |
D | test_platform.py | 256 res = platform.libc_ver(executable) 262 self.assertEqual(platform.libc_ver(support.TESTFN),
|
/external/python/cpython3/Lib/ |
D | platform.py | 162 def libc_ver(executable=None, lib='', version='', chunksize=16384): function 1220 libcname, libcversion = libc_ver()
|
/external/python/cpython2/Lib/ |
D | platform.py | 172 def libc_ver(executable=sys.executable,lib='',version='', chunksize=2048): function 1608 libcname,libcversion = libc_ver(sys.executable)
|
/external/python/cpython3/Doc/library/ |
D | platform.rst | 245 .. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=16384)
|
/external/python/cpython2/Doc/library/ |
D | platform.rst | 279 .. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=2048)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 2297 :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
|