aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-11 18:16:18 -0800
committerGitHub <noreply@github.com>2022-11-11 18:16:18 -0800
commit8d27e6294b73fa2b5c6ecbeee072bb05c30d2685 (patch)
tree1dbbfd6aa36f71394b88f92bd31d8c2dc8c0b919
parentgh-87604: Clarify in docs that sys.addaudithook is not for sandboxes (GH-99372) (diff)
downloadcpython-8d27e6294b73fa2b5c6ecbeee072bb05c30d2685.tar.gz
cpython-8d27e6294b73fa2b5c6ecbeee072bb05c30d2685.tar.bz2
cpython-8d27e6294b73fa2b5c6ecbeee072bb05c30d2685.zip
gh-80448: argparse: Fix IndexError on store_true action (GH-15656)
(cherry picked from commit e02cc6d42aee1f0a9ee629f76576eee478224d9d) Co-authored-by: Hai Shi <shihai1992@gmail.com> Co-authored-by: Rémi Lapeyre <remi.lapeyre@henki.fr> Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
-rw-r--r--Lib/argparse.py6
-rw-r--r--Lib/test/test_argparse.py2
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-03-15-45-19.bpo-36267.z42Ex7.rst1
3 files changed, 7 insertions, 2 deletions
diff --git a/Lib/argparse.py b/Lib/argparse.py
index 9be18488abe..fb042a86b47 100644
--- a/Lib/argparse.py
+++ b/Lib/argparse.py
@@ -1962,7 +1962,11 @@ class ArgumentParser(_AttributeHolder, _ActionsContainer):
# arguments, try to parse more single-dash options out
# of the tail of the option string
chars = self.prefix_chars
- if arg_count == 0 and option_string[1] not in chars:
+ if (
+ arg_count == 0
+ and option_string[1] not in chars
+ and explicit_arg != ''
+ ):
action_tuples.append((action, [], option_string))
char = option_string[0]
option_string = char + explicit_arg[0]
diff --git a/Lib/test/test_argparse.py b/Lib/test/test_argparse.py
index 0b237ab5b93..4d43e3310d4 100644
--- a/Lib/test/test_argparse.py
+++ b/Lib/test/test_argparse.py
@@ -295,7 +295,7 @@ class TestOptionalsSingleDashCombined(ParserTestCase):
Sig('-z'),
]
failures = ['a', '--foo', '-xa', '-x --foo', '-x -z', '-z -x',
- '-yx', '-yz a', '-yyyx', '-yyyza', '-xyza']
+ '-yx', '-yz a', '-yyyx', '-yyyza', '-xyza', '-x=']
successes = [
('', NS(x=False, yyy=None, z=None)),
('-x', NS(x=True, yyy=None, z=None)),
diff --git a/Misc/NEWS.d/next/Library/2019-09-03-15-45-19.bpo-36267.z42Ex7.rst b/Misc/NEWS.d/next/Library/2019-09-03-15-45-19.bpo-36267.z42Ex7.rst
new file mode 100644
index 00000000000..7c9b592d6ec
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-03-15-45-19.bpo-36267.z42Ex7.rst
@@ -0,0 +1 @@
+Fix IndexError in :class:`argparse.ArgumentParser` when a ``store_true`` action is given an explicit argument.