mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
[3.12] gh-109475: Fix support of explicit option value "--" in argparse (GH-114814) (GH-115036)
For example "--option=--".
(cherry picked from commit 4aa4f0906d
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
21f06a22c0
commit
94ad68264c
3 changed files with 19 additions and 1 deletions
|
@ -2488,7 +2488,7 @@ class ArgumentParser(_AttributeHolder, _ActionsContainer):
|
|||
# ========================
|
||||
def _get_values(self, action, arg_strings):
|
||||
# for everything but PARSER, REMAINDER args, strip out first '--'
|
||||
if action.nargs not in [PARSER, REMAINDER]:
|
||||
if not action.option_strings and action.nargs not in [PARSER, REMAINDER]:
|
||||
try:
|
||||
arg_strings.remove('--')
|
||||
except ValueError:
|
||||
|
|
|
@ -5332,6 +5332,22 @@ class TestParseKnownArgs(TestCase):
|
|||
args = parser.parse_args([])
|
||||
self.assertEqual(NS(x=[]), args)
|
||||
|
||||
def test_double_dash(self):
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('-f', '--foo', nargs='*')
|
||||
parser.add_argument('bar', nargs='*')
|
||||
|
||||
args = parser.parse_args(['--foo=--'])
|
||||
self.assertEqual(NS(foo=['--'], bar=[]), args)
|
||||
args = parser.parse_args(['--foo', '--'])
|
||||
self.assertEqual(NS(foo=[], bar=[]), args)
|
||||
args = parser.parse_args(['-f--'])
|
||||
self.assertEqual(NS(foo=['--'], bar=[]), args)
|
||||
args = parser.parse_args(['-f', '--'])
|
||||
self.assertEqual(NS(foo=[], bar=[]), args)
|
||||
args = parser.parse_args(['--foo', 'a', 'b', '--', 'c', 'd'])
|
||||
self.assertEqual(NS(foo=['a', 'b'], bar=['c', 'd']), args)
|
||||
|
||||
|
||||
# ===========================
|
||||
# parse_intermixed_args tests
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Fix support of explicit option value "--" in :mod:`argparse` (e.g.
|
||||
``--option=--``).
|
Loading…
Add table
Add a link
Reference in a new issue