diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-10-12 11:46:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-12 11:46:28 (GMT) |
commit | a6c0c64de0ade400df7995f1e9480b6fc0f863aa (patch) | |
tree | d48eb4b42b7f9c0e04bd15fe4c4105b7694a2ce3 /Doc/library | |
parent | eb2d268ac7480b5e2b4ffb9a644cad7ac75ae954 (diff) | |
download | cpython-a6c0c64de0ade400df7995f1e9480b6fc0f863aa.zip cpython-a6c0c64de0ade400df7995f1e9480b6fc0f863aa.tar.gz cpython-a6c0c64de0ade400df7995f1e9480b6fc0f863aa.tar.bz2 |
gh-59330: Improve error message for dest= for positionals (GH-125215)
Also improve the documentation. Specify how dest and metavar are derived
from add_argument() positional arguments.
Co-authored-by: Simon Law <sfllaw@sfllaw.ca>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/argparse.rst | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index d337de8..19f8320 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -636,6 +636,25 @@ be positional:: usage: PROG [-h] [-f FOO] bar PROG: error: the following arguments are required: bar +By default, argparse automatically handles the internal naming and +display names of arguments, simplifying the process without requiring +additional configuration. +As such, you do not need to specify the dest_ and metavar_ parameters. +The dest_ parameter defaults to the argument name with underscores ``_`` +replacing hyphens ``-`` . The metavar_ parameter defaults to the +upper-cased name. For example:: + + >>> parser = argparse.ArgumentParser(prog='PROG') + >>> parser.add_argument('--foo-bar') + >>> parser.parse_args(['--foo-bar', 'FOO-BAR'] + Namespace(foo_bar='FOO-BAR') + >>> parser.print_help() + usage: [-h] [--foo-bar FOO-BAR] + + optional arguments: + -h, --help show this help message and exit + --foo-bar FOO-BAR + .. _action: |