mirror of
https://github.com/python/cpython.git
synced 2025-11-04 19:59:30 +00:00
update argparse's doc of append action. (#92344)
This commit is contained in:
parent
299692afd8
commit
301351c6a2
1 changed files with 4 additions and 2 deletions
|
|
@ -846,8 +846,10 @@ how the command-line arguments should be handled. The supplied actions are:
|
||||||
Namespace(foo=True, bar=False, baz=True)
|
Namespace(foo=True, bar=False, baz=True)
|
||||||
|
|
||||||
* ``'append'`` - This stores a list, and appends each argument value to the
|
* ``'append'`` - This stores a list, and appends each argument value to the
|
||||||
list. This is useful to allow an option to be specified multiple times.
|
list. It is useful to allow an option to be specified multiple times.
|
||||||
Example usage::
|
If the default value is non-empty, the default elements will be present
|
||||||
|
in the parsed value for the option, with any values from the
|
||||||
|
command line appended after those default values. Example usage::
|
||||||
|
|
||||||
>>> parser = argparse.ArgumentParser()
|
>>> parser = argparse.ArgumentParser()
|
||||||
>>> parser.add_argument('--foo', action='append')
|
>>> parser.add_argument('--foo', action='append')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue