diff options
author | Christian Heimes <christian@cheimes.de> | 2008-09-03 20:31:07 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-09-03 20:31:07 (GMT) |
commit | 2ab344428449792e293c0c4d276fc66d26e919e5 (patch) | |
tree | d6f4bead04c9c8f29c37626590b22372abe24024 /Modules | |
parent | d6a6d3fcff3738038a4bba209898460144b8a228 (diff) | |
download | cpython-2ab344428449792e293c0c4d276fc66d26e919e5.zip cpython-2ab344428449792e293c0c4d276fc66d26e919e5.tar.gz cpython-2ab344428449792e293c0c4d276fc66d26e919e5.tar.bz2 |
Fixed wording of python --help text.
The -b option was still using the old name 'buffer' instead of 'bytearray'.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/main.c b/Modules/main.c index e2bfdb4..386d9d5 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -56,8 +56,8 @@ static char *usage_line = /* Long usage message, split into parts < 512 bytes */ static char *usage_1 = "\ Options and arguments (and corresponding environment variables):\n\ --b : issue warnings about str(bytes_instance), str(buffer_instance)\n\ - and comparing bytes/buffer with str. (-bb: issue errors)\n\ +-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\ + and comparing bytes/bytearray with str. (-bb: issue errors)\n\ -B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\n\ -c cmd : program passed in as string (terminates option list)\n\ -d : debug output from parser; also PYTHONDEBUG=x\n\ |