Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dsysconfig.py104 _PROJECT_BASE = os.path.dirname(_safe_realpath(sys.executable)) variable
108 _PROJECT_BASE = _safe_realpath(os.getcwd()) variable
110 if os.name == "nt" and "pcbuild" in _PROJECT_BASE[-8:].lower():
111 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir)) variable
113 if os.name == "nt" and "\\pc\\v" in _PROJECT_BASE[-10:].lower():
114 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) variable
116 if os.name == "nt" and "\\pcbuild\\amd64" in _PROJECT_BASE[-14:].lower():
117 _PROJECT_BASE = _safe_realpath(os.path.join(_PROJECT_BASE, pardir, pardir)) variable
122 _PROJECT_BASE = os.path.normpath(os.path.abspath(".")) variable
125 if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)):
[all …]