From 80154584a60458cbe88c09f45c5b2cd95014366f Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Tue, 6 Jan 2015 18:29:04 +0200 Subject: [PATCH] Fix a markup error in the argparse documentation. Reported by Jason Sachs on docs@. --- Doc/library/argparse.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1