From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 24 Aug 2018 03:22:17 +0000 (-0400) Subject: Fix doc for `add_subparsers` arguments (GH-8884) X-Git-Tag: v3.7.1rc1~155 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d3d688b9899085473c455dbfdb6acdaa6ee7b99;p=thirdparty%2FPython%2Fcpython.git Fix doc for `add_subparsers` arguments (GH-8884) There was a missing comma. (cherry picked from commit cc18258daf2727a4b8d657aaf0bf8a9cb0b54bb3) Co-authored-by: Anthony Sottile --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 260e5cbf7000..1973afc49452 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1539,7 +1539,7 @@ Sub-commands .. method:: ArgumentParser.add_subparsers([title], [description], [prog], \ [parser_class], [action], \ - [option_string], [dest], [required] \ + [option_string], [dest], [required], \ [help], [metavar]) Many programs split up their functionality into a number of sub-commands,