@@ -49,7 +49,7 @@ Options (and corresponding environment variables):\n\
49
49
.pyc extension; also PYTHONOPTIMIZE=x\n\
50
50
-OO : do -O changes and also discard docstrings; add .opt-2 before\n\
51
51
.pyc extension\n\
52
- -P : don't prepend a potentially unsafe path to sys.path\n\
52
+ -P : don't prepend a potentially unsafe path to sys.path; also PYTHONSAFEPATH \n\
53
53
-q : don't print version and copyright messages on interactive startup\n\
54
54
-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
55
55
-S : don't imply 'import site' on initialization\n\
@@ -132,7 +132,6 @@ static const char usage_envvars[] =
132
132
"PYTHONSTARTUP: file executed on interactive startup (no default)\n"
133
133
"PYTHONPATH : '%lc'-separated list of directories prefixed to the\n"
134
134
" default module search path. The result is sys.path.\n"
135
- "PYTHONSAFEPATH: don't prepend a potentially unsafe path to sys.path.\n"
136
135
"PYTHONHOME : alternate <prefix> directory (or <prefix>%lc<exec_prefix>).\n"
137
136
" The default module search path uses %s.\n"
138
137
"PYTHONPLATLIBDIR : override sys.platlibdir.\n"
@@ -172,6 +171,7 @@ static const char usage_envvars[] =
172
171
" (-X int_max_str_digits=number)\n"
173
172
"PYTHONNOUSERSITE : disable user site directory (-s)\n"
174
173
"PYTHONOPTIMIZE : enable level 1 optimizations (-O)\n"
174
+ "PYTHONSAFEPATH : don't prepend a potentially unsafe path to sys.path (-P)\n"
175
175
"PYTHONUNBUFFERED : disable stdout/stderr buffering (-u)\n"
176
176
"PYTHONVERBOSE : trace import statements (-v)\n"
177
177
"PYTHONWARNINGS=arg : warning control (-W arg)\n" ;
0 commit comments