From: Berker Peksag Date: Tue, 6 Jan 2015 16:29:04 +0000 (+0200) Subject: Fix a markup error in the argparse documentation. X-Git-Tag: v2.7.10rc1~240 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80154584a60458cbe88c09f45c5b2cd95014366f;p=python Fix a markup error in the argparse documentation. Reported by Jason Sachs on docs@. --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 25005ee163..cda563d4a8 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1216,8 +1216,8 @@ Action classes implement the Action API, a callable which returns a callable which processes arguments from the command-line. Any object which follows this API may be passed as the ``action`` parameter to :meth:`add_argument`. -.. class:: Action(option_strings, dest, nargs=None, const=None, default=None, - type=None, choices=None, required=False, help=None, +.. class:: Action(option_strings, dest, nargs=None, const=None, default=None, \ + type=None, choices=None, required=False, help=None, \ metavar=None) Action objects are used by an ArgumentParser to represent the information needed