mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Generalize help text for compile/no-compile flags
This commit is contained in:
parent
4749845a51
commit
13373c37cf
2 changed files with 3 additions and 2 deletions
1
news/4316.bugfix
Normal file
1
news/4316.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Generalize help text for ``compile``/``no-compile` flags.
|
|
@ -143,14 +143,14 @@ class InstallCommand(RequirementCommand):
|
|||
action="store_true",
|
||||
dest="compile",
|
||||
default=True,
|
||||
help="Compile py files to pyc",
|
||||
help="Compile Python source files to bytecode",
|
||||
)
|
||||
|
||||
cmd_opts.add_option(
|
||||
"--no-compile",
|
||||
action="store_false",
|
||||
dest="compile",
|
||||
help="Do not compile py files to pyc",
|
||||
help="Do not compile Python source files to bytecode",
|
||||
)
|
||||
|
||||
cmd_opts.add_option(cmdoptions.no_binary())
|
||||
|
|
Loading…
Reference in a new issue