From fae3f64f993326e405c1d68374f202c9ce53e7c7 Mon Sep 17 00:00:00 2001 From: "brett.cannon" Date: Fri, 1 Jan 2010 01:44:57 +0000 Subject: [PATCH] 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). git-svn-id: http://svn.python.org/projects/python/trunk@77198 6015fed2-1504-0410-9fe1-9d1591cc4771 --- Doc/using/cmdline.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 72f292d529..03163cef57 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 -- 2.11.4.GIT