Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/scripts/
Dwin_add2path.py21 pythonpath = os.path.dirname(os.path.normpath(sys.executable))
22 scripts = os.path.join(pythonpath, "Scripts")
37 for path in (pythonpath, scripts, userscripts):
/external/python/cpython3/Tools/scripts/
Dwin_add2path.py21 pythonpath = os.path.dirname(os.path.normpath(sys.executable))
22 scripts = os.path.join(pythonpath, "Scripts")
38 for path in (pythonpath, scripts, userscripts):
/external/python/cpython3/Modules/
Dgetpath.c121 wchar_t *pythonpath; /* PYTHONPATH define */ member
811 wchar_t *defpath = calculate->pythonpath; in calculate_module_search_path()
854 defpath = calculate->pythonpath; in calculate_module_search_path()
903 calculate->pythonpath = Py_DecodeLocale(PYTHONPATH, &len); in calculate_init()
904 if (!calculate->pythonpath) { in calculate_init()
926 PyMem_RawFree(calculate->pythonpath); in calculate_free()
/external/python/cpython2/Modules/
Dgetpath.c373 char *pythonpath = PYTHONPATH; in calculate_path() local
384 char *defpath = pythonpath; in calculate_path()
604 defpath = pythonpath; in calculate_path()
/external/u-boot/scripts/
DMakefile.spl251 pythonpath = PYTHONPATH=scripts/dtc/pylibfdt
254 cmd_dtocc = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ platdata
257 cmd_dtoch = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ struct