Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dplatform.py1000 def _sys_version(sys_version=None): argument
1021 if sys_version is None:
1022 sys_version = sys.version
1025 result = _sys_version_cache.get(sys_version, None)
1030 if 'IronPython' in sys_version:
1033 if sys_version.startswith('IronPython'):
1034 match = _ironpython_sys_version_parser.match(sys_version)
1036 match = _ironpython26_sys_version_parser.match(sys_version)
1041 repr(sys_version))
1050 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/python/Lib/test/test_importlib/
Dtest_windows.py43 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
592 return self.server_version + ' ' + self.sys_version
/third_party/python/Doc/library/
Dhttp.server.rst138 .. attribute:: sys_version
296 :attr:`server_version` and :attr:`sys_version` attributes.
/third_party/python/Lib/importlib/
D_bootstrap_external.py730 sys_version='%d.%d' % sys.version_info[:2])