We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bf04ed commit 2232b8dCopy full SHA for 2232b8d
Doc/library/argparse.rst
@@ -2123,9 +2123,9 @@ Parser defaults
2123
>>> parser.parse_args(['736'])
2124
Namespace(bar=42, baz='badger', foo=736)
2125
2126
- Note that defaults can be set at both the parser level using :meth:`set_defaults`
+ Note that defaults can be set at both the parser level using :meth:`set_defaults`
2127
and at the argument level using :meth:`add_argument`. If both are provided for the
2128
- same argument, the order of setting these defaults determines which one takes
+ same argument, the order of setting these defaults determines which one takes
2129
precedence. The last default set for an argument is the one that is used:
2130
2131
>>> parser = argparse.ArgumentParser()
0 commit comments