mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Fix missing space with help for -m compileall -o (GH-27591) (GH-28431)
(cherry picked from commit 74cc2453ae)
Co-authored-by: Daniel Hahler <git@thequod.de>
This commit is contained in:
parent
129e47733b
commit
791cfd1903
1 changed files with 3 additions and 3 deletions
|
|
@ -365,9 +365,9 @@ def main():
|
|||
'environment variable is set, and '
|
||||
'"timestamp" otherwise.'))
|
||||
parser.add_argument('-o', action='append', type=int, dest='opt_levels',
|
||||
help=('Optimization levels to run compilation with.'
|
||||
'Default is -1 which uses optimization level of'
|
||||
'Python interpreter itself (specified by -O).'))
|
||||
help=('Optimization levels to run compilation with. '
|
||||
'Default is -1 which uses the optimization level '
|
||||
'of the Python interpreter itself (see -O).'))
|
||||
parser.add_argument('-e', metavar='DIR', dest='limit_sl_dest',
|
||||
help='Ignore symlinks pointing outsite of the DIR')
|
||||
parser.add_argument('--hardlink-dupes', action='store_true',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue