gh-89398: Fix argparse namespace overridden by subparsers default#30219
Open
frostming wants to merge 3 commits intopython:mainfrom
Open
gh-89398: Fix argparse namespace overridden by subparsers default#30219frostming wants to merge 3 commits intopython:mainfrom
frostming wants to merge 3 commits intopython:mainfrom
Conversation
Lib/argparse.py
Outdated
Member
There was a problem hiding this comment.
Why do you convert it into a list if the caller (__eq__) turns it into a dict again?
Contributor
Author
There was a problem hiding this comment.
The __repr__ implementation of the parent class _AttributeHolder also calls this. But this change can be considered.
Member
There was a problem hiding this comment.
Ah right, I should have checked that. Better to just leave it as is then.
MaxwellDupre
approved these changes
Feb 18, 2022
Contributor
MaxwellDupre
left a comment
There was a problem hiding this comment.
Test module shows no issues in 1674 tests.
2281bfe to
4c5cc3c
Compare
4c5cc3c to
95cb850
Compare
5db6000 to
8c771dd
Compare
Signed-off-by: Frost Ming <me@frostming.com>
8c771dd to
96ace73
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is to fix gh-89398 with another approach than #29574.
The default values are stored in a dunder attribute in
Namespaceto ensure they don't override the given values.