Home
last modified time | relevance | path

Searched refs:get_python_version (Results 1 – 10 of 10) 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/cpython2/Lib/
Dsysconfig.py614 def get_python_version(): function
631 print 'Python version: "%s"' % get_python_version()
/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/cpython2/Misc/
DHISTORY1837 - Patch #1046831: Use get_python_version where appropriate in sysconfig.py.