Skip to content

Commit 7301095

Browse files
Address comments from rhettinger
1 parent c1c9029 commit 7301095

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/argparse.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ Name Description
3232
========================= =========================================================================================================== ==================================================================================
3333
prog_ The name of the program Defaults to ``os.path.basename(sys.argv[0])``
3434
usage_ The string describing the program usage
35-
description_ A brief description of what the program does. Displayed between the usage_ and argument help
35+
description_ A brief description of what the program does
3636
epilog_ Additional description of the program after the argument help
3737
parents_ A list of :class:`ArgumentParser` objects whose arguments should also be included
3838
formatter_class_ A class for customizing the help output ``argparse.HelpFormatter``
3939
prefix_chars_ The set of characters that prefix optional arguments Defaults to ``'-'``
40-
fromfile_prefix_chars_ The set of characters that prefix files from which additional arguments should be read Defaults to ``None`` (meaning arguments will never be treated as file references)
40+
fromfile_prefix_chars_ The set of characters that prefix files to read additional arguments from Defaults to ``None`` (meaning arguments will never be treated as file references)
4141
argument_default_ The global default value for arguments
4242
allow_abbrev_ Allows long options to be abbreviated if the abbreviation is unambiguous ``True`` or ``False`` (default: ``True``)
4343
conflict_handler_ The strategy for resolving conflicting optionals

0 commit comments

Comments
 (0)