@@ -38,7 +38,7 @@ Options and arguments (and corresponding environment variables):\n\
38
38
-d : turn on parser debugging output (for experts only, only works on\n\
39
39
debug builds); also PYTHONDEBUG=x\n\
40
40
-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
41
- -h : print this help message and exit (also --help)\n\
41
+ -h : print this help message and exit (also -? or - -help)\n\
42
42
" ;
43
43
static const char usage_2 [] = "\
44
44
-i : inspect interactively after running script; forces a prompt even\n\
@@ -65,7 +65,6 @@ static const char usage_3[] = "\
65
65
also PYTHONWARNINGS=arg\n\
66
66
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
67
67
-X opt : set implementation-specific option. The following options are available:\n\
68
- \n\
69
68
-X faulthandler: enable faulthandler\n\
70
69
-X showrefcount: output the total reference count and number of used\n\
71
70
memory blocks when the program finishes or after each statement in the\n\
@@ -82,7 +81,8 @@ static const char usage_3[] = "\
82
81
checks which are too expensive to be enabled by default. Effect of the\n\
83
82
developer mode:\n\
84
83
* Add default warning filter, as -W default\n\
85
- * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks() C function\n\
84
+ * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks()\n\
85
+ C function\n\
86
86
* Enable the faulthandler module to dump the Python traceback on a crash\n\
87
87
* Enable asyncio debug mode\n\
88
88
* Set the dev_mode attribute of sys.flags to True\n\
@@ -100,7 +100,6 @@ static const char usage_3[] = "\
100
100
when the interpreter displays tracebacks.\n\
101
101
-X frozen_modules=[on|off]: whether or not frozen modules should be used.\n\
102
102
The default is \"on\" (or \"off\" if you are running a local build).\n\
103
- \n\
104
103
--check-hash-based-pycs always|default|never:\n\
105
104
control how Python invalidates hash-based .pyc files\n\
106
105
" ;
@@ -141,7 +140,7 @@ static const char usage_6[] =
141
140
"PYTHONNODEBUGRANGES: If this variable is set, it disables the inclusion of the \n"
142
141
" tables mapping extra location information (end line, start column offset \n"
143
142
" 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"
143
+ " when smaller code objects and pyc files are desired as well as suppressing the \n"
145
144
" extra visual location indicators when the interpreter displays tracebacks.\n" ;
146
145
147
146
#if defined(MS_WINDOWS )
0 commit comments