@@ -35,10 +35,12 @@ Options and arguments (and corresponding environment variables):\n\
35
35
and comparing bytes/bytearray with str. (-bb: issue errors)\n\
36
36
-B : don't write .pyc files on import; also PYTHONDONTWRITEBYTECODE=x\n\
37
37
-c cmd : program passed in as string (terminates option list)\n\
38
+ --check-hash-based-pycs always|default|never:\n\
39
+ control how Python invalidates hash-based .pyc files\n\
38
40
-d : turn on parser debugging output (for experts only, only works on\n\
39
41
debug builds); also PYTHONDEBUG=x\n\
40
42
-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
41
- -h : print this help message and exit (also --help)\n\
43
+ -h : print this help message and exit (also --help or -? )\n\
42
44
" ;
43
45
static const char usage_2 [] = "\
44
46
-i : inspect interactively after running script; forces a prompt even\n\
@@ -82,7 +84,8 @@ static const char usage_3[] = "\
82
84
checks which are too expensive to be enabled by default. Effect of the\n\
83
85
developer mode:\n\
84
86
* Add default warning filter, as -W default\n\
85
- * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks() C function\n\
87
+ * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks()\n\
88
+ C function\n\
86
89
* Enable the faulthandler module to dump the Python traceback on a crash\n\
87
90
* Enable asyncio debug mode\n\
88
91
* Set the dev_mode attribute of sys.flags to True\n\
@@ -100,9 +103,6 @@ static const char usage_3[] = "\
100
103
when the interpreter displays tracebacks.\n\
101
104
-X frozen_modules=[on|off]: whether or not frozen modules should be used.\n\
102
105
The default is \"on\" (or \"off\" if you are running a local build).\n\
103
- \n\
104
- --check-hash-based-pycs always|default|never:\n\
105
- control how Python invalidates hash-based .pyc files\n\
106
106
" ;
107
107
static const char usage_4 [] = "\
108
108
file : program read from script file\n\
@@ -141,7 +141,7 @@ static const char usage_6[] =
141
141
"PYTHONNODEBUGRANGES: If this variable is set, it disables the inclusion of the \n"
142
142
" tables mapping extra location information (end line, start column offset \n"
143
143
" and end column offset) to every instruction in code objects. This is useful \n"
144
- " when smaller cothe de objects and pyc files are desired as well as suppressing the \n"
144
+ " when smaller code objects and pyc files are desired as well as suppressing the \n"
145
145
" extra visual location indicators when the interpreter displays tracebacks.\n" ;
146
146
147
147
#if defined(MS_WINDOWS )
0 commit comments