summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-28 15:07:47 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-28 15:07:47 (GMT)
commit6b86a42c7f8786f8446d5a48db406282f18ec06a (patch)
treef89a66d9345ee5ca953c64b65d23bb30cb1b005a /Modules/main.c
parentbf07b29c04de9e9424b6adb1fe50a1604e43a784 (diff)
downloadcpython-6b86a42c7f8786f8446d5a48db406282f18ec06a.zip
cpython-6b86a42c7f8786f8446d5a48db406282f18ec06a.tar.gz
cpython-6b86a42c7f8786f8446d5a48db406282f18ec06a.tar.bz2
Document -OO; "unsafe" optimization that removes docstrings.
Marc-Andre Lemburg.
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 36b2be9..556a67a 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -60,7 +60,7 @@ static int orig_argc;
/* Short usage message (with %s for argv0) */
static char *usage_line =
-"usage: %s [-d] [-i] [-O] [-S] [-u] [-v] [-x] [-X] [-c cmd | file | -] [arg] ...\n";
+"usage: %s [option] ... [-c cmd | file | -] [arg] ...\n";
/* Long usage message, split into parts < 512 bytes */
static char *usage_top = "\
@@ -69,6 +69,7 @@ Options and arguments (and corresponding environment variables):\n\
-i : inspect interactively after running script, (also PYTHONINSPECT=x)\n\
and force prompts, even if stdin does not appear to be a terminal\n\
-O : optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x)\n\
+-OO : remove doc-strings in addition to the -O optimizations\n\
-S : don't imply 'import site' on initialization\n\
-t : issue warnings about inconsistent tab usage (-tt: issue errors)\n\
";