Skip to content

Commit 0a37bcf

Browse files
Apply suggestions from code review
Co-authored-by: Éric <[email protected]>
1 parent b057d91 commit 0a37bcf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Python/initconfig.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ Options (and corresponding environment variables):\n\
173173
also PYTHONWARNINGS=arg\n\
174174
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
175175
-X opt : set implementation-specific option\n\
176-
--check-hash-based-pycs arg: control how Python invalidates hash-based .pyc\n\
177-
files; arg is always|default|never\n\
176+
--check-hash-based-pycs always|default|never:\n\
177+
control how Python invalidates hash-based .pyc files\n\
178178
--help-env: print help about Python environment variables and exit\n\
179179
--help-xoptions: print help about implementation-specific -X options and exit\n\
180180
--help-all: print complete help information and exit\n\
@@ -203,7 +203,7 @@ The following implementation-specific options are available:\n\
203203
-X perf: support the Linux \"perf\" profiler; also PYTHONPERFSUPPORT.\n\
204204
"
205205
#ifdef Py_DEBUG
206-
"-X presite=MOD: import this module before site.py is run; also PYTHON_PRESITE\n"
206+
"-X presite=MOD: import this module before site is imported; also PYTHON_PRESITE\n"
207207
#endif
208208
"\
209209
-X pycache_prefix=PATH: write .pyc files to a parallel tree instead of to the\n\
@@ -274,7 +274,7 @@ static const char usage_envvars[] =
274274
"PYTHONOPTIMIZE : enable level 1 optimizations (-O)\n"
275275
"PYTHONPERFSUPPORT: support the Linux \"perf\" profiler (-X perf)\n"
276276
#ifdef Py_DEBUG
277-
"PYTHON_PRESITE: import this module before site.py is run (-X presite)\n"
277+
"PYTHON_PRESITE: import this module before site is imported (-X presite)\n"
278278
#endif
279279
"PYTHONPROFILEIMPORTTIME: show how long each import takes (-X importtime)\n"
280280
"PYTHONPYCACHEPREFIX: root directory for bytecode cache (pyc) files\n"

0 commit comments

Comments
 (0)