Searched refs:libc_ver (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
D | test_platform.py | 378 platform.libc_ver(executable) 385 self.assertEqual(platform.libc_ver(), ('mock', '1.0')) 400 self.assertEqual(platform.libc_ver(executable=filename), 410 self.assertEqual(platform.libc_ver(filename, chunksize=chunksize),
|
D | pythoninfo.py | 149 libc_ver = ('%s %s' % platform.libc_ver()).strip() 150 if libc_ver: 151 info_add('platform.libc_ver', libc_ver)
|
D | test_time.py | 437 @unittest.skipUnless(platform.libc_ver()[0] != 'glibc',
|
/third_party/python/Lib/ |
D | platform.py | 162 def libc_ver(executable=None, lib='', version='', chunksize=16384): function 1222 libcname, libcversion = libc_ver()
|
/third_party/python/Doc/library/ |
D | platform.rst | 245 .. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=16384)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 207 Handle empty string in variable executable in platform.libc_ver()
|
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
|