mirror of
https://github.com/python/cpython.git
synced 2025-11-24 20:30:18 +00:00
gh-109475: Fix support of explicit option value "--" in argparse (GH-114814)
For example "--option=--".
This commit is contained in:
parent
750489cc77
commit
4aa4f0906d
3 changed files with 19 additions and 1 deletions
|
|
@ -2485,7 +2485,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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue