Home
last modified time | relevance | path

Searched refs:get_python_version (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dsysconfig.py58 def get_python_version(): function
93 return os.path.join(prefix, "include", "python" + get_python_version())
123 "lib", "python" + get_python_version())
133 if get_python_version() < "2.2":
234 if get_python_version() < '2.2':
416 g['VERSION'] = get_python_version().replace(".", "")
/external/python/cpython2/Lib/distutils/command/
Dbdist_wininst.py12 from sysconfig import get_python_version
99 short_version = get_python_version()
191 pyversion = get_python_version()
333 cur_version = get_python_version()
Dbdist_dumb.py11 from sysconfig import get_python_version
126 pyversion = get_python_version()
Dbdist_rpm.py15 from distutils.sysconfig import get_python_version
384 pyversion = get_python_version()
Dbuild_ext.py16 from distutils.sysconfig import customize_compiler, get_python_version
231 "python" + get_python_version(),
Dbdist_msi.py10 from sysconfig import get_python_version
146 short_version = get_python_version()
/external/python/cpython3/Lib/distutils/command/
Dbdist_wininst.py13 from distutils.sysconfig import get_python_version
102 short_version = get_python_version()
192 pyversion = get_python_version()
327 cur_version = get_python_version()
Dbdist_dumb.py12 from distutils.sysconfig import get_python_version
116 pyversion = get_python_version()
Dbdist_rpm.py11 from distutils.sysconfig import get_python_version
366 pyversion = get_python_version()
Dbuild_ext.py13 from distutils.sysconfig import customize_compiler, get_python_version
225 "python" + get_python_version(),
Dbdist_msi.py14 from distutils.sysconfig import get_python_version
153 short_version = get_python_version()
/external/python/cpython3/Lib/distutils/
Dsysconfig.py79 def get_python_version(): function
112 python_dir = 'python' + get_python_version() + build_flags
156 "python" + get_python_version())
264 config_file = 'config-{}{}'.format(get_python_version(), build_flags)
466 g['VERSION'] = get_python_version().replace(".", "")
/external/python/setuptools/setuptools/command/
Dbdist_egg.py24 from sysconfig import get_path, get_python_version
29 from distutils.sysconfig import get_python_lib, get_python_version
117 get_python_version(),
240 ('bdist_egg', get_python_version(), self.egg_output))
/external/tensorflow/tensorflow/tools/tensorflow_builder/config_detector/
Dconfig_detector.py500 def get_python_version(): function
536 ("Python version (default)", get_python_version()),
/external/python/cpython2/Lib/
Dsysconfig.py619 def get_python_version(): function
636 print 'Python version: "%s"' % get_python_version()
/external/python/cpython3/Lib/
Dsysconfig.py686 def get_python_version(): function
703 print('Python version: "%s"' % get_python_version())
/external/python/cpython3/Doc/library/
Dsysconfig.rst164 .. function:: get_python_version()
257 :func:`get_platform`, :func:`get_python_version`, :func:`get_path` and
/external/python/cpython2/Doc/library/
Dsysconfig.rst164 .. function:: get_python_version()
/external/libxml2/
Dconfigure.ac858 …YTHON_VERSION=`$PYTHON -c "from distutils import sysconfig; print(sysconfig.get_python_version())"`
/external/python/cpython3/Doc/whatsnew/
D3.2.rst2054 * :func:`~sysconfig.get_python_version` returns a Python version string
/external/python/cpython2/Misc/
DHISTORY1837 - Patch #1046831: Use get_python_version where appropriate in sysconfig.py.
/external/python/cpython3/Misc/
DHISTORY19221 - Patch #1046831: Use get_python_version where appropriate in sysconfig.py.