This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author r.david.murray
Recipients docs@python, eric.araujo, r.david.murray
Date 2010-12-17.01:15:25
SpamBayes Score 3.1974423e-14
Marked as misclassified No
Message-id <1292548527.72.0.735957897786.issue10454@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a proposed patch to both docs and help output.  The help output now looks like this:

usage: compileall.py [-h] [-l] [-f] [-q] [-b] [-d DESTDIR] [-x REGEXP]
                     [-i FILE]
                     [FILE|DIR [FILE|DIR ...]]

Utilities to support installing Python libraries.

positional arguments:
  FILE|DIR    zero or more file and directory names to compile; if no
              arguments given, defaults to the equivalent of -l sys.path

optional arguments:
  -h, --help  show this help message and exit
  -l          don't recurse into subdirectories
  -f          force rebuild even if timestamps are up to date
  -q          output only error messages
  -b          use legacy (pre-PEP3147) compiled file locations
  -d DESTDIR  directory to prepend to file paths for use in compile time
              tracebacks and in runtime tracebacks in cases where the source
              file is unavailable
  -x REGEXP   skip files matching the regular expression. The regexp is
              searched for in the full path to each file considered for
              compilation.
  -i FILE     add all the files and directories listed in FILE to the list
              considered for compilation. If "-", names are read from stdin.
History
Date User Action Args
2010-12-17 01:15:28r.david.murraysetrecipients: + r.david.murray, eric.araujo, docs@python
2010-12-17 01:15:27r.david.murraysetmessageid: <1292548527.72.0.735957897786.issue10454@psf.upfronthosting.co.za>
2010-12-17 01:15:26r.david.murraylinkissue10454 messages
2010-12-17 01:15:26r.david.murraycreate