@@ -41,7 +41,7 @@ Options and arguments (and corresponding environment variables):\n\
41
41
-d : turn on parser debugging output (for experts only, only works on\n\
42
42
debug builds); also PYTHONDEBUG=x\n\
43
43
-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
44
- -h : print this help message and exit (also --help)\n\
44
+ -h : print this help message and exit (also -? or - -help)\n\
45
45
" ;
46
46
static const char usage_2 [] = "\
47
47
-i : inspect interactively after running script; forces a prompt even\n\
@@ -67,7 +67,6 @@ static const char usage_3[] = "\
67
67
also PYTHONWARNINGS=arg\n\
68
68
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
69
69
-X opt : set implementation-specific option. The following options are available:\n\
70
- \n\
71
70
-X faulthandler: enable faulthandler\n\
72
71
-X showrefcount: output the total reference count and number of used\n\
73
72
memory blocks when the program finishes or after each statement in the\n\
@@ -84,7 +83,8 @@ static const char usage_3[] = "\
84
83
checks which are too expensive to be enabled by default. Effect of the\n\
85
84
developer mode:\n\
86
85
* Add default warning filter, as -W default\n\
87
- * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks() C function\n\
86
+ * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks()\n\
87
+ C function\n\
88
88
* Enable the faulthandler module to dump the Python traceback on a crash\n\
89
89
* Enable asyncio debug mode\n\
90
90
* Set the dev_mode attribute of sys.flags to True\n\
@@ -95,7 +95,6 @@ static const char usage_3[] = "\
95
95
-X pycache_prefix=PATH: enable writing .pyc files to a parallel tree rooted at the\n\
96
96
given directory instead of to the code tree\n\
97
97
-X warn_default_encoding: enable opt-in EncodingWarning for 'encoding=None'\n\
98
- \n\
99
98
--check-hash-based-pycs always|default|never:\n\
100
99
control how Python invalidates hash-based .pyc files\n\
101
100
" ;
0 commit comments