Searched refs:mac_ver (Results 1 - 13 of 13) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_platform.py | 324 res = platform.mac_ver() 361 # Issue7895: platform.mac_ver() crashes when using fork without exec 368 info = platform.mac_ver() 472 for mac_ver, expected_terse, expected in [ 473 # darwin: mac_ver() returns empty strings 477 # macOS: mac_ver() returns macOS version 482 with mock.patch.object(platform, 'mac_ver', 483 return_value=mac_ver):
|
H A D | test__osx_support.py | 68 self.assertTrue(platform.mac_ver()[0].startswith( 111 platform.mac_ver()[0].split('.')[0:2])
|
H A D | test_posix.py | 1961 self.mac_ver = tuple(int(part) for part in platform.mac_ver()[0].split(".")) 1969 if self.mac_ver >= (10, 16): 1979 if self.mac_ver >= (10, 10): 1990 if self.mac_ver >= (10, 10): 2007 if self.mac_ver >= (10, 10): 2019 if self.mac_ver >= (10, 10): 2031 if self.mac_ver >= (10, 10): 2070 if self.mac_ver >= (10, 10): 2084 if self.mac_ver > [all...] |
H A D | test_time.py | 1134 mac_ver = tuple(int(x) for x in platform.mac_ver()[0].split(".")) 1140 if mac_ver >= (10, 12):
|
H A D | test_cmath.py | 342 version_txt = platform.mac_ver()[0]
|
H A D | test_math.py | 1685 version_txt = platform.mac_ver()[0]
|
H A D | test_ssl.py | 5264 'Mac': platform.mac_ver,
|
/third_party/notofonts/scripts/ |
H A D | versionator.py | 19 MAC_VERSION = "macOS " + re.sub(r".\d+$", "", platform.mac_ver()[0])
|
/third_party/python/Mac/BuildScript/ |
H A D | build-installer.py | 161 return tuple([int(n) for n in platform.mac_ver()[0].split('.')[0:2]]) 404 mac_ver = tuple(map(int, platform.mac_ver()[0].split('.'))) 405 return mac_ver >= (10, 15)
|
/third_party/python/Lib/ |
H A D | platform.py | 436 def mac_ver(release='', versioninfo=('', '', ''), machine=''): function 1220 macos_release = mac_ver()[0]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | tags.py | 394 version_str, _, cpu_arch = platform.mac_ver() 405 "import platform; print(platform.mac_ver()[0])",
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 369 version_txt = platform.mac_ver()[0]
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_events.py | 51 version = platform.mac_ver()[0]
|
Completed in 30 milliseconds