-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
argparse: nargs='*' positional argument doesn't accept any items if preceded by an option and another positional #59317
Comments
Test case: from argparse import *
parser = ArgumentParser()
parser.add_argument('-x', action='store_true')
parser.add_argument('y')
parser.add_argument('z', nargs='*')
The result of this is that the "z" option is unfilled, and the "zz" argument is unrecognized, resulting in an error. Changing the 'nargs' to '+' works in this case, but results in errors if the 'zz' is left off. |
Attached is a patch to fix this bug by deferring matching of nargs='*' argument against a zero-length pattern until the end of the arguments list. I believe that it ought to be maximally conservative in that it should not change the behavior of any existing parsers except in cases where it allows them to accept arguments they would previously have left unrecognized in cases like the test in the initial report. |
Your patch is a good start, but it needs to handle all the related situations, e.g. nargs='?' and the possibility of having more than one zero-length argument at the end. I believe the following patch achieves this. Please test it out. |
Was argparse ever supposed to support inputs of the form given in the example (i.e. different positional arguments straddling optional arguments): 'yy -x zz'? The usage string shows up as: "usage: test.py [-h] [-x] y [z [z ...]]" The original example seems to work with the current code if given as: '-x yy zz'. Also, substituting argparse.REMAINDER for '*' in the original example gives the following both with and without the patch: Namespace(x=False, y='yy', z=['-x', 'zz']) That doesn't seem consistent with straddling being supported. Lastly, passing just '-x' gives the following error with and without the patch (z should be optional): error: the following arguments are required: y, z |
I was surprised to discover that “option straddling” doesn’t work this way with nargs="*". It seems to work fine with most other kinds of positional arguments I have tried, and I imagine that this was by design rather than accident. Many Gnu CLI programs also tend to support it as well (e.g. “cp file1 file2 --verbose dir/”). I assumed nargs=argparse.REMAINDER was intended to override the “option straddling”. Otherwise, by just going off the documentation it sounds like nargs=argparse.REMAINDER is much the same as nargs="*". |
I originally posted this on http://bugs.python.org/issue14191, but I think it belongs here. The patch I proposed is similar to berthard's, popping items off the end of 'args_counts'. I intend to check whether the logic is equivalent. ---------------------------- If: parser = ArgumentParser()
parser.add_argument('-f','--foo')
parser.add_argument('cmd')
parser.add_argument('rest', nargs='*')
all give {cmd='cmd', rest=['1','2','3'], foo='1'}. But 'cmd 1 -f1 2 3', does not recognize ['2','3']. Previously 'cmd -f1 1 2 3' would return rest=[], and not recognize ['1','2','3']. With this change the nargs='*' behaves more like nargs='+', surviving to parse the 2nd group of positional strings. The trick is to modify arg_counts in consume_positionals(), removing matches that don't do anything (don't consume argument strings). if 'O' in arg_strings_pattern[start_index:]:
# if there is an optional after this, remove
# 'empty' positionals from the current match
while len(arg_counts)>1 and arg_counts[-1]==0:
arg_counts = arg_counts[:-1] This change passes all of the existing test_argparse.py tests. It also passes the optparse tests that I added in http://bugs.python.org/issue9334#msg184987 |
These three changes end up testing for the same thing. The initial 'if' catches different test cases. 'subparsers' or 'remainder' might 'confuse' the 'O' test. The zero-width test ends up weeding out everything but the test cases added for this issue. # if we haven't hit the end of the command line strings,
if start_index + sum(arg_counts) != len(arg_strings_pattern):
while arg_counts and arg_counts[-1] == 0:
arg_counts.pop()
# same test using selected_pattern (= arg_strings_pattern[start_index:])
if len(selected_pattern) != sum(arg_counts):
while arg_counts and arg_counts[-1] == 0:
arg_counts.pop()
# alt test: test for optional in the remaining pattern
if 'O' in selected_pattern:
while arg_counts and arg_counts[-1] == 0:
arg_counts.pop() |
I believe http://bugs.python.org/issue14174 with REMAINDER has its roots in the same issue - parse_args tries to process as many positionals as it can at a time, regardless of what's left in the argument strings. The fix proposed here depends on the 2nd argument taking 0 strings. REMAINDER, on the other hand, grabs everything that's left, leaving none for the optionals. |
In my opinion this is a bug or it should be explicitly stated in the generated usage help string. |
It seems that delaying positional argument parsing after all optional arguments are parsed would be clean and robust. My understanding is that optional arguments aren't ambiguous and should be processed first and removed from the arguments. Then the current pattern matching done for positional arguments would work well (in one try). If you think this would be a better patch I can give it a try. |
http://bugs.python.org/issue14191 implements a 'parse_intermixed_args()' method, which parses all of the optionals with one pass, followed by a second pass that handles the positionals. It does this by temporarily deactivating the positionals for the first pass. It emulates the optparse behavior (with the added ability to parse positionals). This is too big of a change to ever become the default behavior for argparse. |
Closed bpo-24223 as a duplicate. I understand the patch here also fixes the case of an --option before an optional positional argument using nargs="?"; is that right? |
Playing with Steven and Paul’s patches, they both seem to work well. Paul’s seems to have debug printing included, which should be removed. I confirmed both patches also seem to address the nargs="?" case (bpo-24223). At the moment I have zero knowledge of how the argparse internals work. Are there any advantages of one patch over the other? |
…arse Fix parsing positional argument with nargs equal to '?' or '*' if it is preceded by an option and another positional argument.
Unfortunately, such solution does not help in the positional argument with nargs='*' if followed by an option and another positional argument: from argparse import *
parser = ArgumentParser()
parser.add_argument('-x', action='store_true')
parser.add_argument('y', nargs='*')
parser.add_argument('z')
parser.parse_args('yy -x zz'.split(' ')) I tried the variant that fixes it, but it breaks other cases, which look more common. Solution that would support all cases requires complete rewriting the argparse code. I think that we should accept a simpler imperfect solution (which can be qualified as a bugfix) until we get a perfect solution.
|
…H-124303) Fix parsing positional argument with nargs equal to '?' or '*' if it is preceded by an option and another positional argument.
…arse (pythonGH-124303) Fix parsing positional argument with nargs equal to '?' or '*' if it is preceded by an option and another positional argument. (cherry picked from commit 4a5e4aa) Co-authored-by: Serhiy Storchaka <[email protected]>
…arse (pythonGH-124303) Fix parsing positional argument with nargs equal to '?' or '*' if it is preceded by an option and another positional argument. (cherry picked from commit 4a5e4aa) Co-authored-by: Serhiy Storchaka <[email protected]>
Closing as the original case was fixed, and more general solution waits its time. |
…parse (GH-124303) (GH-124437) Fix parsing positional argument with nargs equal to '?' or '*' if it is preceded by an option and another positional argument. (cherry picked from commit 4a5e4aa) Co-authored-by: Serhiy Storchaka <[email protected]>
…parse (GH-124303) (GH-124436) Fix parsing positional argument with nargs equal to '?' or '*' if it is preceded by an option and another positional argument. (cherry picked from commit 4a5e4aa) Co-authored-by: Serhiy Storchaka <[email protected]>
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Breaking change: passing unknown (odoo-bin) arguments before positional arguments is not supported in Python >= 3.12.7. In the same idea, it is also not supported anymore to pass known arguments after positional arguments. It is not planned to reimplement this feature in the later versions as it was taking advantage of a bug not compliant with common CLI rulings and RFCs. When in doubt, please refer to the command's help and follow the proposed order for arguments. See: python/cpython#59317
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
Linked PRs
The text was updated successfully, but these errors were encountered: