-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Create _ExtendArgument
#6300
Create _ExtendArgument
#6300
Conversation
Pull Request Test Coverage Report for Build 2165658916
π - Coveralls |
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.
LGTM !
"""Action that adds the value to a pre-existing list. | ||
|
||
It is directly copied from the stdlib implementation which is only available | ||
on 3.8+. |
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.
Maybe we could start a TODO list for when we drop 3.7 like #4683 to not forget to cleanup that kind of thing.
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.
I think whenever we drop support for a version we're likely to do a grep
for 3.8
3, 8
and other combinations. But feel free to open one!
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.
Type of Changes
Description
Currently uncovered but necessary for
pyreverse
since it has anappend
option, which inargparse
is the same as anextend
option.Added in a separate PR to keep the final
pyreverse
PR light-weight.