diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 15:53:55 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 15:53:55 +0300 |
commit | 9a3777e525b389ec5881c3f80a482fb821ab3ea5 (patch) | |
tree | e83520348eea751f2b02e8effa76f3cce2c644cd /Lib/optparse.py | |
parent | 07351a044960f259c8730de3f81356fbcdbe2bbf (diff) | |
parent | 30b9d5d3af043fc2687ad11a188a34fe355e20ef (diff) | |
download | cpython-git-9a3777e525b389ec5881c3f80a482fb821ab3ea5.tar.gz |
#18705: merge with 3.3.
Diffstat (limited to 'Lib/optparse.py')
-rw-r--r-- | Lib/optparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/optparse.py b/Lib/optparse.py index 37764d317a..22405d5eb8 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -1463,7 +1463,7 @@ class OptionParser (OptionContainer): """_match_long_opt(opt : string) -> string Determine which long option string 'opt' matches, ie. which one - it is an unambiguous abbrevation for. Raises BadOptionError if + it is an unambiguous abbreviation for. Raises BadOptionError if 'opt' doesn't unambiguously match any long option string. """ return _match_abbrev(opt, self._long_opt) |