@@ -326,7 +326,6 @@ def main():
326326
327327 parser = argparse .ArgumentParser (
328328 description = 'Utilities to support installing Python libraries.' ,
329- color = True ,
330329 )
331330 parser .add_argument ('-l' , action = 'store_const' , const = 0 ,
332331 default = None , dest = 'maxlevels' ,
@@ -338,10 +337,10 @@ def main():
338337 parser .add_argument ('-f' , action = 'store_true' , dest = 'force' ,
339338 help = 'force rebuild even if timestamps are up to date' )
340339 parser .add_argument ('-q' , action = 'count' , dest = 'quiet' , default = 0 ,
341- help = 'output only error messages; -qq will suppress '
340+ help = 'output only error messages; ` -qq` will suppress '
342341 'the error messages as well.' )
343342 parser .add_argument ('-b' , action = 'store_true' , dest = 'legacy' ,
344- help = 'use legacy (pre-PEP3147 ) compiled file locations' )
343+ help = 'use legacy (pre-PEP 3147 ) compiled file locations' )
345344 parser .add_argument ('-d' , metavar = 'DESTDIR' , dest = 'ddir' , default = None ,
346345 help = ('directory to prepend to file paths for use in '
347346 'compile-time tracebacks and in runtime '
@@ -367,28 +366,28 @@ def main():
367366 'of each file considered for compilation' ))
368367 parser .add_argument ('-i' , metavar = 'FILE' , dest = 'flist' ,
369368 help = ('add all the files and directories listed in '
370- 'FILE to the list considered for compilation; '
371- 'if "-", names are read from stdin' ))
369+ '` FILE` to the list considered for compilation; '
370+ 'if ` "-"` , names are read from ` stdin` ' ))
372371 parser .add_argument ('compile_dest' , metavar = 'FILE|DIR' , nargs = '*' ,
373372 help = ('zero or more file and directory names '
374373 'to compile; if no arguments given, defaults '
375- 'to the equivalent of -l sys.path' ))
374+ 'to the equivalent of `-l` ` sys.path` ' ))
376375 parser .add_argument ('-j' , '--workers' , default = 1 ,
377376 type = int , help = 'Run compileall concurrently' )
378377 invalidation_modes = [mode .name .lower ().replace ('_' , '-' )
379378 for mode in py_compile .PycInvalidationMode ]
380379 parser .add_argument ('--invalidation-mode' ,
381380 choices = sorted (invalidation_modes ),
382- help = ('set .pyc invalidation mode; defaults to '
383- '"checked-hash" if the SOURCE_DATE_EPOCH '
381+ help = ('set ` .pyc` invalidation mode; defaults to '
382+ '` "checked-hash"` if the ` SOURCE_DATE_EPOCH` '
384383 'environment variable is set, and '
385- '"timestamp" otherwise.' ))
384+ '` "timestamp"` otherwise.' ))
386385 parser .add_argument ('-o' , action = 'append' , type = int , dest = 'opt_levels' ,
387386 help = ('Optimization levels to run compilation with. '
388- 'Default is -1 which uses the optimization level '
389- 'of the Python interpreter itself (see -O ).' ))
387+ 'Default is `-1` which uses the optimization level '
388+ 'of the Python interpreter itself (see `-O` ).' ))
390389 parser .add_argument ('-e' , metavar = 'DIR' , dest = 'limit_sl_dest' ,
391- help = 'Ignore symlinks pointing outsite of the DIR' )
390+ help = 'Ignore symlinks pointing outsite of the ` DIR` ' )
392391 parser .add_argument ('--hardlink-dupes' , action = 'store_true' ,
393392 dest = 'hardlink_dupes' ,
394393 help = 'Hardlink duplicated pyc files' )
0 commit comments