Searched refs:mac_ver (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Lib/test/ |
D | test_platform.py | 314 res = platform.mac_ver() 358 info = platform.mac_ver() 461 for mac_ver, expected_terse, expected in [ 472 return_value=mac_ver):
|
D | test__osx_support.py | 69 self.assertTrue(platform.mac_ver()[0].startswith( 112 platform.mac_ver()[0].split('.')[0:2])
|
D | test_posix.py | 1960 self.mac_ver = tuple(int(part) for part in platform.mac_ver()[0].split(".")) 1968 if self.mac_ver >= (10, 16): 1978 if self.mac_ver >= (10, 10): 1989 if self.mac_ver >= (10, 10): 2006 if self.mac_ver >= (10, 10): 2018 if self.mac_ver >= (10, 10): 2030 if self.mac_ver >= (10, 10): 2069 if self.mac_ver >= (10, 10): 2083 if self.mac_ver >= (10, 10): 2094 if self.mac_ver >= (10, 10): [all …]
|
D | test_time.py | 1061 mac_ver = tuple(int(x) for x in platform.mac_ver()[0].split(".")) 1067 if mac_ver >= (10, 12):
|
D | test_cmath.py | 342 version_txt = platform.mac_ver()[0]
|
D | test_math.py | 1649 version_txt = platform.mac_ver()[0]
|
D | test_ssl.py | 4880 'Mac': platform.mac_ver,
|
/third_party/node/tools/gyp/ |
D | test_gyp.py | 156 print(" Mac %s %s" % (platform.mac_ver()[0], platform.mac_ver()[2]))
|
/third_party/python/Mac/BuildScript/ |
D | build-installer.py | 161 return tuple([int(n) for n in platform.mac_ver()[0].split('.')[0:2]]) 405 mac_ver = tuple(map(int, platform.mac_ver()[0].split('.'))) 406 return mac_ver >= (10, 15)
|
/third_party/python/Lib/ |
D | platform.py | 433 def mac_ver(release='', versioninfo=('', '', ''), machine=''): function 1207 macos_release = mac_ver()[0]
|
/third_party/python/Doc/library/ |
D | platform.rst | 83 On macOS, the function now uses :func:`mac_ver`, if it returns a 232 .. function:: mac_ver(release='', versioninfo=('','',''), machine='')
|
/third_party/python/Lib/test/support/ |
D | __init__.py | 353 version_txt = platform.mac_ver()[0]
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_events.py | 50 version = platform.mac_ver()[0]
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 2390 On macOS, :func:`platform.platform` now uses :func:`platform.mac_ver`, if it
|
/third_party/python/Misc/ |
D | HISTORY | 2711 - Issue #20229: Avoid plistlib deprecation warning in platform.mac_ver(). 13219 - Issue #7895: platform.mac_ver() no longer crashes after calling os.fork().
|