@@ -49,7 +49,7 @@ Options (and corresponding environment variables):\n\
4949 .pyc extension; also PYTHONOPTIMIZE=x\n\
5050-OO : do -O changes and also discard docstrings; add .opt-2 before\n\
5151 .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\
5353-q : don't print version and copyright messages on interactive startup\n\
5454-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
5555-S : don't imply 'import site' on initialization\n\
@@ -132,7 +132,6 @@ static const char usage_envvars[] =
132132"PYTHONSTARTUP: file executed on interactive startup (no default)\n"
133133"PYTHONPATH : '%lc'-separated list of directories prefixed to the\n"
134134" default module search path. The result is sys.path.\n"
135- "PYTHONSAFEPATH: don't prepend a potentially unsafe path to sys.path.\n"
136135"PYTHONHOME : alternate <prefix> directory (or <prefix>%lc<exec_prefix>).\n"
137136" The default module search path uses %s.\n"
138137"PYTHONPLATLIBDIR : override sys.platlibdir.\n"
@@ -172,6 +171,7 @@ static const char usage_envvars[] =
172171" (-X int_max_str_digits=number)\n"
173172"PYTHONNOUSERSITE : disable user site directory (-s)\n"
174173"PYTHONOPTIMIZE : enable level 1 optimizations (-O)\n"
174+ "PYTHONSAFEPATH : don't prepend a potentially unsafe path to sys.path (-P)\n"
175175"PYTHONUNBUFFERED : disable stdout/stderr buffering (-u)\n"
176176"PYTHONVERBOSE : trace import statements (-v)\n"
177177"PYTHONWARNINGS=arg : warning control (-W arg)\n" ;
0 commit comments