diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 18:38:13 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2013-03-11 18:38:13 -0400 |
commit | 8e7586bd44cf2a117228bb8d2b2de52ae1e88fab (patch) | |
tree | 55dc61a57bfcecf3c14d771271859ea0d5fe7c3c /Lib/argparse.py | |
parent | Merge with 3.3, issue #17047: remove doubled words added in 3.3, (diff) | |
download | cpython-8e7586bd44cf2a117228bb8d2b2de52ae1e88fab.tar.gz cpython-8e7586bd44cf2a117228bb8d2b2de52ae1e88fab.tar.bz2 cpython-8e7586bd44cf2a117228bb8d2b2de52ae1e88fab.zip |
Issue #17047: remove doubled words added in 3.4,
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Lib/argparse.py')
-rw-r--r-- | Lib/argparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/argparse.py b/Lib/argparse.py index 71dfdda0042..5ff755c84ab 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -1141,7 +1141,7 @@ class FileType(object): - bufsize -- The file's desired buffer size. Accepts the same values as the builtin open() function. - encoding -- The file's encoding. Accepts the same values as the - the builtin open() function. + builtin open() function. - errors -- A string indicating how encoding and decoding errors are to be handled. Accepts the same value as the builtin open() function. """ |