Searched refs:project_base (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/distutils/ |
D | sysconfig.py | 28 project_base = os.path.dirname(os.path.abspath(sys.executable)) variable 29 if os.name == "nt" and "pcbuild" in project_base[-8:].lower(): 30 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir)) variable 32 if os.name == "nt" and "\\pc\\v" in project_base[-10:].lower(): 33 project_base = os.path.abspath(os.path.join(project_base, os.path.pardir, variable 36 if os.name == "nt" and "\\pcbuild\\amd64" in project_base[-14:].lower(): 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 52 if os.path.isfile(os.path.join(project_base, "Modules", fn)): 229 inc_dir = os.path.join(project_base, "PC") [all …]
|
/external/python/cpython3/Lib/distutils/ |
D | sysconfig.py | 29 project_base = os.path.abspath(os.environ["_PYTHON_PROJECT_BASE"]) variable 31 project_base = os.path.dirname(os.path.abspath(sys.executable)) variable 53 project_base = _fix_pcbuild(project_base) variable 59 return _is_python_source_dir(project_base) 105 return _sys_home or project_base 240 inc_dir = os.path.join(_sys_home or project_base, "PC") 242 inc_dir = _sys_home or project_base 252 return os.path.join(_sys_home or project_base, "Makefile") 493 srcdir = _config_vars.get('srcdir', project_base) 514 base = project_base
|