()
| 220 | _PROJECT_BASE = _safe_realpath(os.environ["_PYTHON_PROJECT_BASE"]) |
| 221 | |
| 222 | def is_python_build(): |
| 223 | for fn in ("Setup", "Setup.local"): |
| 224 | if os.path.isfile(os.path.join(_PROJECT_BASE, "Modules", fn)): |
| 225 | return True |
| 226 | return False |
| 227 | |
| 228 | _PYTHON_BUILD = is_python_build() |
| 229 |
searching dependent graphs…