diff options
author | Raymond Hettinger <python@rcn.com> | 2014-08-04 06:44:30 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-08-04 06:44:30 (GMT) |
commit | c0de59bfc39436b2bbdf011d90d47c10204a4278 (patch) | |
tree | 3bd5c32ef895e84c0c2223fac7521a1788a91959 | |
parent | c566431bf0e91c5a235dbf42b2d80ae2afa44548 (diff) | |
download | cpython-c0de59bfc39436b2bbdf011d90d47c10204a4278.zip cpython-c0de59bfc39436b2bbdf011d90d47c10204a4278.tar.gz cpython-c0de59bfc39436b2bbdf011d90d47c10204a4278.tar.bz2 |
Fix markup.
-rw-r--r-- | Doc/library/argparse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index d8a5ba3..8571b6a 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1235,7 +1235,7 @@ Action classes 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 -:method:`add_argument`. +:meth:`add_argument`. .. class:: Action(option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, @@ -1244,7 +1244,7 @@ this API may be passed as the ``action`` parameter to Action objects are used by an ArgumentParser to represent the information needed to parse a single argument from one or more strings from the command line. The Action class must accept the two positional arguments -plus any keyword arguments passed to :method:`ArgumentParser.add_argument` +plus any keyword arguments passed to :meth:`ArgumentParser.add_argument` except for the ``action`` itself. Instances of Action (or return value of any callable to the ``action`` |