-
-
Notifications
You must be signed in to change notification settings - Fork 34.2k
gh-109164: Replace getopt with argparse in pdb
#109165
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
Changes from 1 commit
a9d0109
6c5bb11
d51219c
e417507
cdf3570
2defa6b
f14bc09
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2083,9 +2083,9 @@ def main(): | |||||
| allow_abbrev=False) | ||||||
|
|
||||||
| parser.add_argument('-c', '--command', action='append', default=[], metavar='command') | ||||||
| grp = parser.add_mutually_exclusive_group(required=True) | ||||||
| grp.add_argument('-m', metavar='module') | ||||||
| grp.add_argument('pyfile', nargs='?') | ||||||
| group = parser.add_mutually_exclusive_group(required=True) | ||||||
| group.add_argument('-m', metavar='module') | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suggest using names longer than 1 letter, you should update the code below as well.
Suggested change
|
||||||
| group.add_argument('pyfile', nargs='?') | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a slight work-around for limitations in argparse -- we want the mutually exclusive group behaviour, so
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Which limitation? Is there is a reason to use the wrong nargs on purpose, please add a comment to explain why.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I don't think this is wrong. Consider it as - you can either pass a module with
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's not how exclusive group works. Either you pass a module or a pyfile. pyfile is not optional.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I think either pass a module or a pyfile -> pyfile is optional, it's literally in a either/or sentence. Mutually exclusive group requires all the options in the group to be "optional". What's your proposal for this? You can't use
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I misunderstood how exclusive groups work. It's kind of surprising. Apparently, you must use import argparse
parser = argparse.ArgumentParser(prog='PROG')
group = parser.add_argument_group()
exclusive_group = group.add_mutually_exclusive_group(required=True)
exclusive_group.add_argument('-m', metavar='MODULE')
exclusive_group.add_argument('pyscript', nargs='?')
print(parser.parse_args(['-m', 'mymod']))
print(parser.parse_args(['myscript']))
print(parser.parse_args([]))Output:
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This bit of argparse's design is odd, I agree. A |
||||||
| parser.add_argument('args', nargs="*") | ||||||
|
|
||||||
| if len(sys.argv) == 1: | ||||||
AA-Turner marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
|
@@ -2099,7 +2099,7 @@ def main(): | |||||
| target = _ModuleTarget(file) | ||||||
| else: | ||||||
| file = opts.pyfile | ||||||
| target = _ScriptTarget(opts.pyfile[0]) | ||||||
| target = _ScriptTarget(file) | ||||||
|
|
||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would prefer:
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This would be a larger refactor, the current state reflects what's currently present.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right, that's why I'm asking for :-)
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The logic is pretty similar right? Just a slightly different implementation. I don't think this is too much if this is preferred.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm just disturbed by calling "module" a "file".
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, feel free to ignore my comment about this code. |
||||||
| target.check() | ||||||
|
|
||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's surprising that -c looks like python -c option, but different. Would you mind to add a help message to explain that there are pdb commands? And that they have the same format than
.pdbrcconfiguration files?I suggest to add
dest='commands', since it's non-obvious fromcommandname that's a list.