Skip to content

Commit dcab2c2

Browse files
Update Doc/library/argparse.rst
Co-authored-by: Savannah Ostrowski <savannah@python.org>
1 parent 8da8655 commit dcab2c2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

‎Doc/library/argparse.rst‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -835,9 +835,9 @@ how the command-line arguments should be handled. The supplied actions are:
835835
>>> parser.parse_args(['-vvv'])
836836
Namespace(verbose=3)
837837

838-
Note, the *default* will be ``None`` unless explicitly set to *0*.
839-
If the default value is a non-zero number, the count starts from that
840-
number rather than from zero.
838+
Unless explicitly set, the *default* will be ``None``. If the default
839+
value is a non-zero number, the count starts from that number rather
840+
than from zero.
841841

842842
* ``'help'`` - This prints a complete help message for all the options in the
843843
current parser and then exits. By default a help action is automatically

0 commit comments

Comments
 (0)