Home
last modified time | relevance | path

Searched refs:_sys_version (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/
Dplatform.py987 def _sys_version(sys_version=None): function
1102 return _sys_version()[0]
1112 return _sys_version()[1]
1123 return tuple(_sys_version()[1].split('.'))
1137 return _sys_version()[2]
1150 return _sys_version()[3]
1158 return _sys_version()[4:6]
1166 return _sys_version()[6]
/external/python/cpython2/Lib/
Dplatform.py1376 def _sys_version(sys_version=None): function
1490 return _sys_version()[0]
1500 return _sys_version()[1]
1511 return tuple(string.split(_sys_version()[1], '.'))
1525 return _sys_version()[2]
1538 return _sys_version()[3]
1546 return _sys_version()[4:6]
1554 return _sys_version()[6]
/external/python/cpython2/Lib/test/
Dtest_platform.py90 = platform._sys_version(input)
/external/python/cpython3/Lib/test/
Dtest_platform.py88 = platform._sys_version(input)
/external/python/cpython2/Misc/NEWS.d/
D2.7.6rc1.rst152 fix platform._sys_version to handle IronPython 2.6+. Patch by Martin
/external/python/cpython3/Misc/
DHISTORY3567 - Issue #8964: fix platform._sys_version to handle IronPython 2.6+.