Skip to content

Commit b54fe61

Browse files
committed
Adress Victor's feedback
1 parent ea6569b commit b54fe61

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Python/initconfig.c

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ static const char usage_3[] = "\
6464
also PYTHONWARNINGS=arg\n\
6565
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
6666
-X opt : set implementation-specific option. The following options are available:\n\
67+
\n\
6768
-X faulthandler: enable faulthandler\n\
6869
-X showrefcount: output the total reference count and number of used\n\
6970
memory blocks when the program finishes or after each statement in the\n\
@@ -80,9 +81,8 @@ static const char usage_3[] = "\
8081
nested imports). Note that its output may be broken in multi-threaded\n\
8182
application. Typical usage is python3 -X importtime -c 'import asyncio'\n\
8283
-X dev: enable CPython’s “development mode”, introducing additional runtime\n\
83-
checks which are too expensive to be enabled by default. It will not be\n\
84-
more verbose than the default if the code is correct: new warnings are\n\
85-
only emitted when an issue is detected. Effect of the developer mode:\n\
84+
checks which are too expensive to be enabled by default. Effect of the\n\
85+
developer mode:\n\
8686
* Add default warning filter, as -W default\n\
8787
* Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks() C function\n\
8888
* Enable the faulthandler module to dump the Python traceback on a crash\n\
@@ -91,9 +91,10 @@ static const char usage_3[] = "\
9191
* io.IOBase destructor logs close() exceptions\n\
9292
-X utf8: enable UTF-8 mode for operating system interfaces, overriding the default\n\
9393
locale-aware mode. -X utf8=0 explicitly disables UTF-8 mode (even when it would\n\
94-
otherwise activate automatically). See PYTHONUTF8 for more details\n\
94+
otherwise activate automatically)\n\
9595
-X pycache_prefix=PATH: enable writing .pyc files to a parallel tree rooted at the\n\
96-
given directory instead of to the code tree.\n\
96+
given directory instead of to the code tree\n\
97+
\n\
9798
--check-hash-based-pycs always|default|never:\n\
9899
control how Python invalidates hash-based .pyc files\n\
99100
";

0 commit comments

Comments
 (0)