Home
last modified time | relevance | path

Searched defs:project_base (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dsysconfig.py28 project_base = os.path.dirname(os.path.abspath(sys.executable)) variable
30 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir)) variable
33 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, variable
37 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, variable
43 project_base = os.path.normpath(os.environ["_PYTHON_PROJECT_BASE"]) variable
/external/python/setuptools/setuptools/_distutils/
Dsysconfig.py32 project_base = os.path.abspath(os.environ["_PYTHON_PROJECT_BASE"]) variable
35 project_base = os.path.dirname(os.path.abspath(sys.executable)) variable
39 project_base = os.getcwd() variable
59 project_base = _fix_pcbuild(project_base) variable
/external/python/cpython3/Lib/distutils/
Dsysconfig.py27 _PROJECT_BASE as project_base, unknown