10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b459f74 commit 7d1017dCopy full SHA for 7d1017d
Modules/main.c
@@ -106,6 +106,9 @@ static const char usage_6[] =
106
"PYTHONMALLOC: set the Python memory allocators and/or install debug hooks\n"
107
" on Python memory allocators. Use PYTHONMALLOC=debug to install debug\n"
108
" hooks.\n";
109
+static const char usage_7[] =
110
+"PYTHONCOERCECLOCALE: if this variable is set to 0, it disables the locale\n"
111
+"coercion behavior\n";
112
113
static int
114
usage(int exitcode, const wchar_t* program)
@@ -122,6 +125,7 @@ usage(int exitcode, const wchar_t* program)
122
125
fprintf(f, usage_4, (wint_t)DELIM);
123
126
fprintf(f, usage_5, (wint_t)DELIM, PYTHONHOMEHELP);
124
127
fputs(usage_6, f);
128
+ fputs(usage_7, f);
129
}
130
return exitcode;
131
0 commit comments