Lines Matching full:pythonpath
14 * If the PYTHONPATH env. var. exists, its entries are added next.
22 loaded from the registry. This is the main PythonPath key,
25 * Iff - we can not locate the Python Home, and have not had a PYTHONPATH
265 char *envpath = getenv("PYTHONPATH"); in calculate_path()
299 * (1) the PYTHONPATH environment variable, if set; in calculate_path()
301 * (3) the PYTHONPATH config macro, with the leading "." in calculate_path()
311 for (p = PYTHONPATH; *p; p++) { in calculate_path()
319 bufsz += strlen(PYTHONPATH) + 1; in calculate_path()
328 fprintf(stderr, "Can't malloc dynamic PYTHONPATH.\n"); in calculate_path()
330 fprintf(stderr, "Using environment $PYTHONPATH.\n"); in calculate_path()
335 module_search_path = PYTHONPATH; in calculate_path()
352 strcpy(buf, PYTHONPATH); in calculate_path()
356 char *p = PYTHONPATH; in calculate_path()