@@ -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\
@@ -144,7 +144,6 @@ static const char usage_envvars[] =
144
144
"PYTHONSTARTUP: file executed on interactive startup (no default)\n"
145
145
"PYTHONPATH : '%lc'-separated list of directories prefixed to the\n"
146
146
" default module search path. The result is sys.path.\n"
147
- "PYTHONSAFEPATH: don't prepend a potentially unsafe path to sys.path.\n"
148
147
"PYTHONHOME : alternate <prefix> directory (or <prefix>%lc<exec_prefix>).\n"
149
148
" The default module search path uses %s.\n"
150
149
"PYTHONPLATLIBDIR : override sys.platlibdir.\n"
@@ -184,6 +183,7 @@ static const char usage_envvars[] =
184
183
" (-X int_max_str_digits=number)\n"
185
184
"PYTHONNOUSERSITE : disable user site directory (-s)\n"
186
185
"PYTHONOPTIMIZE : enable level 1 optimizations (-O)\n"
186
+ "PYTHONSAFEPATH : don't prepend a potentially unsafe path to sys.path (-P)\n"
187
187
"PYTHONUNBUFFERED : disable stdout/stderr buffering (-u)\n"
188
188
"PYTHONVERBOSE : trace import statements (-v)\n"
189
189
"PYTHONWARNINGS=arg : warning control (-W arg)\n" ;
0 commit comments