diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-02-11 18:46:47 +0000 |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-02-11 18:46:47 +0000 |
commit | aeff6687b5fced2d7617aa6bd6a6388dbfa66c51 (patch) | |
tree | 984e35387a9b4b5a0337bec3289322116fb4f4b8 /Modules/main.c | |
parent | 34172d5316d099535390777083ccb7849ac76322 (diff) | |
download | cpython-git-aeff6687b5fced2d7617aa6bd6a6388dbfa66c51.tar.gz |
Remove mentioning of -U option in "python -h" output.
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 41c229f87a..b36714c14d 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -60,7 +60,6 @@ static char *usage_2 = "\ -u : unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x)\n\ "; static char *usage_3 = "\ --U : Unicode literals: treats '...' literals like u'...'\n\ -v : verbose (trace import statements) (also PYTHONVERBOSE=x)\n\ -V : print the Python version number and exit\n\ -W arg : warning control (arg is action:message:category:module:lineno)\n\ |