Home
last modified time | relevance | path

Searched refs:sys_version (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/
Dplatform.py989 def _sys_version(sys_version=None): argument
1010 if sys_version is None:
1011 sys_version = sys.version
1014 result = _sys_version_cache.get(sys_version, None)
1019 if 'IronPython' in sys_version:
1022 if sys_version.startswith('IronPython'):
1023 match = _ironpython_sys_version_parser.match(sys_version)
1025 match = _ironpython26_sys_version_parser.match(sys_version)
1030 repr(sys_version))
1039 match = _sys_version_parser.match(sys_version)
[all …]
/third_party/python/Lib/wsgiref/
Dsimple_server.py24 sys_version = python_implementation() + "/" + sys.version.split()[0] variable
25 software_version = server_version + ' ' + sys_version
/third_party/mindspore/mindspore/run_check/
D_check_deps_version.py50 from hccl import sys_version as hccl_version
/third_party/python/Lib/test/test_importlib/
Dtest_windows.py63 sys_version='%d.%d' % sys.version_info[:2])
/third_party/python/Lib/http/
Dserver.py253 sys_version = "Python/" + sys.version.split()[0] variable in BaseHTTPRequestHandler
585 return self.server_version + ' ' + self.sys_version
/third_party/python/Doc/library/
Dhttp.server.rst140 .. attribute:: sys_version
298 :attr:`server_version` and :attr:`sys_version` attributes.
/third_party/python/Lib/importlib/
D_bootstrap_external.py820 sys_version='%d.%d' % sys.version_info[:2])