Home
last modified time | relevance | path

Searched refs:mac_ver (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/test/
Dtest_platform.py314 res = platform.mac_ver()
358 info = platform.mac_ver()
461 for mac_ver, expected_terse, expected in [
472 return_value=mac_ver):
Dtest__osx_support.py69 self.assertTrue(platform.mac_ver()[0].startswith(
112 platform.mac_ver()[0].split('.')[0:2])
Dtest_posix.py1960 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 …]
Dtest_time.py1061 mac_ver = tuple(int(x) for x in platform.mac_ver()[0].split("."))
1067 if mac_ver >= (10, 12):
Dtest_cmath.py342 version_txt = platform.mac_ver()[0]
Dtest_math.py1649 version_txt = platform.mac_ver()[0]
Dtest_ssl.py4880 'Mac': platform.mac_ver,
/third_party/node/tools/gyp/
Dtest_gyp.py156 print(" Mac %s %s" % (platform.mac_ver()[0], platform.mac_ver()[2]))
/third_party/python/Mac/BuildScript/
Dbuild-installer.py161 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/
Dplatform.py433 def mac_ver(release='', versioninfo=('', '', ''), machine=''): function
1207 macos_release = mac_ver()[0]
/third_party/python/Doc/library/
Dplatform.rst83 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__.py353 version_txt = platform.mac_ver()[0]
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py50 version = platform.mac_ver()[0]
/third_party/python/Misc/NEWS.d/
D3.8.0a1.rst2390 On macOS, :func:`platform.platform` now uses :func:`platform.mac_ver`, if it
/third_party/python/Misc/
DHISTORY2711 - Issue #20229: Avoid plistlib deprecation warning in platform.mac_ver().
13219 - Issue #7895: platform.mac_ver() no longer crashes after calling os.fork().