Home
last modified time | relevance | path

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

/external/python/cpython3/PC/
Dlauncher.c1579 wchar_t * venv_cfg_path; in process() local
1655 venv_cfg_path = wcsdup_pad(argv0, 32, &newlen); in process()
1656 if (!venv_cfg_path) { in process()
1659 p = wcsrchr(venv_cfg_path, L'\\'); in process()
1665 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg"); in process()
1666 attrs = GetFileAttributesW(venv_cfg_path); in process()
1668 debug(L"File '%ls' non-existent\n", venv_cfg_path); in process()
1670 p = wcsrchr(venv_cfg_path, L'\\'); in process()
1673 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg"); in process()
1674 attrs = GetFileAttributesW(venv_cfg_path); in process()
[all …]