Home
last modified time | relevance | path

Searched refs:get_python_version (Results 1 – 21 of 21) 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/cpython3/Lib/distutils/command/
Dbdist_wininst.py11 from distutils.sysconfig import get_python_version
91 short_version = get_python_version()
181 pyversion = get_python_version()
314 cur_version = get_python_version()
Dbdist_dumb.py12 from distutils.sysconfig import get_python_version
116 pyversion = get_python_version()
Dbdist_rpm.py12 from distutils.sysconfig import get_python_version
370 pyversion = get_python_version()
Dbuild_ext.py13 from distutils.sysconfig import customize_compiler, get_python_version
225 "python" + get_python_version(),
Dbdist_msi.py12 from distutils.sysconfig import get_python_version
145 short_version = get_python_version()
/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/
Dsysconfig.py76 def get_python_version(): function
109 python_dir = 'python' + get_python_version() + build_flags
146 "lib", "python" + get_python_version())
254 config_file = 'config-{}{}'.format(get_python_version(), build_flags)
456 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/python/cpython2/Lib/
Dsysconfig.py619 def get_python_version(): function
636 print 'Python version: "%s"' % get_python_version()
/external/python/cpython3/Lib/
Dsysconfig.py681 def get_python_version(): function
698 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.ac842 …YTHON_VERSION=`$PYTHON -c "from distutils import sysconfig; print(sysconfig.get_python_version())"`
/external/python/cpython3/Doc/whatsnew/
D3.2.rst2052 * :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.