diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-01-01 01:44:57 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-01-01 01:44:57 (GMT) |
commit | f31d1a0577e6171ae85337ad78c6882a1fab8717 (patch) | |
tree | 2597d79ec697d0864567e5593092e60590d6c39d /Doc/using | |
parent | 0ef0b910ce974f296667671ec7d34783ea1d9bd0 (diff) | |
download | cpython-f31d1a0577e6171ae85337ad78c6882a1fab8717.zip cpython-f31d1a0577e6171ae85337ad78c6882a1fab8717.tar.gz cpython-f31d1a0577e6171ae85337ad78c6882a1fab8717.tar.bz2 |
Add some missing command-line options to the main list. All but -V were already
documented. Left -V undocumented for now (and -U was already undocumented).
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 72f292d..03163ce 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -21,7 +21,7 @@ Command line When invoking Python, you may specify any of these options:: - python [-dEiOQsStuUvxX3?] [-c command | -m module-name | script | - ] [args] + python [-BdEiOQsStuUvVWxX3?] [-c command | -m module-name | script | - ] [args] The most common use case is, of course, a simple invocation of a script:: @@ -316,7 +316,7 @@ Miscellaneous options :mod:`warnings` module. The simplest form of argument is one of the following action strings (or a - unique abbreviation): + unique abbreviation) by themselves: ``ignore`` Ignore all warnings. @@ -362,6 +362,8 @@ Miscellaneous options .. note:: The line numbers in error messages will be off by one. +.. XXX document -X? + .. cmdoption:: -3 |