mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
A follow up for issue #15906: change the test for calling the type conversion
on the action's default, reverting it back to previous behavior. Conversion is only done on string defaults. Add a test for this and another test that ensures such type conversions are only called once.
This commit is contained in:
parent
55ad6515c9
commit
eaae1b76ae
2 changed files with 28 additions and 5 deletions
|
@ -1957,7 +1957,7 @@ class ArgumentParser(_AttributeHolder, _ActionsContainer):
|
|||
# twice (which may fail) if the argument was given, but
|
||||
# only if it was defined already in the namespace
|
||||
if (action.default is not None and
|
||||
isinstance(action, _StoreAction) and
|
||||
isinstance(action.default, basestring) and
|
||||
hasattr(namespace, action.dest) and
|
||||
action.default is getattr(namespace, action.dest)):
|
||||
setattr(namespace, action.dest,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue