Lines Matching defs:path
52 -P : don't prepend a potentially unsafe path to sys.path\n\
54 -s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
134 " default module search path. The result is sys.path.\n"
135 "PYTHONSAFEPATH: don't prepend a potentially unsafe path to sys.path.\n"
137 " The default module search path uses %s.\n"
2755 /* Get run_filename absolute path */
2765 /* path is already absolute */
2772 /* failed to get the absolute path of the command line filename:
2773 ignore the error, keep the relative path */
3067 /* Dump the Python path configuration into sys.stderr */
3074 PySys_WriteStderr("Python path configuration:\n");
3119 PyObject *sys_path = PySys_GetObject("path"); /* borrowed reference */
3121 PySys_WriteStderr(" sys.path = [\n");
3124 PyObject *path = PyList_GET_ITEM(sys_path, i);
3125 PySys_FormatStderr(" %A,\n", path);