File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,11 +85,11 @@ file : program read from script file\n\
8585arg ...: arguments passed to program in sys.argv[1:]\n\n\
8686Other environment variables:\n\
8787PYTHONSTARTUP: file executed on interactive startup (no default)\n\
88- PYTHONPATH : '%c '-separated list of directories prefixed to the\n\
88+ PYTHONPATH : '%lc '-separated list of directories prefixed to the\n\
8989 default module search path. The result is sys.path.\n\
9090" ;
9191static const char usage_5 [] =
92- "PYTHONHOME : alternate <prefix> directory (or <prefix>%c <exec_prefix>).\n"
92+ "PYTHONHOME : alternate <prefix> directory (or <prefix>%lc <exec_prefix>).\n"
9393" The default module search path uses %s.\n"
9494"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
9595"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
@@ -114,8 +114,8 @@ usage(int exitcode, const wchar_t* program)
114114 fputs (usage_1 , f );
115115 fputs (usage_2 , f );
116116 fputs (usage_3 , f );
117- fprintf (f , usage_4 , DELIM );
118- fprintf (f , usage_5 , DELIM , PYTHONHOMEHELP );
117+ fprintf (f , usage_4 , ( wint_t ) DELIM );
118+ fprintf (f , usage_5 , ( wint_t ) DELIM , PYTHONHOMEHELP );
119119 fputs (usage_6 , f );
120120 }
121121 return exitcode ;
You can’t perform that action at this time.
0 commit comments