diff options
author | ram vikram singh <ramvikrams243@gmail.com> | 2022-11-22 21:16:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 21:16:06 (GMT) |
commit | f5fea2288620cb2fda24f3eecc9d623331fe4401 (patch) | |
tree | 644eca4843ee08630e554bced43612f9d925cbf3 /Doc/library/argparse.rst | |
parent | d4cf192826b4c3bc91ac0de573a3a2d85760f1dd (diff) | |
download | cpython-f5fea2288620cb2fda24f3eecc9d623331fe4401.zip cpython-f5fea2288620cb2fda24f3eecc9d623331fe4401.tar.gz cpython-f5fea2288620cb2fda24f3eecc9d623331fe4401.tar.bz2 |
gh-99650 : Updated argparse docs (GH-99653)
Diffstat (limited to 'Doc/library/argparse.rst')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index c55d944..f8839d0 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1945,7 +1945,7 @@ Argument groups .. method:: ArgumentParser.add_argument_group(title=None, description=None) By default, :class:`ArgumentParser` groups command-line arguments into - "positional arguments" and "optional arguments" when displaying help + "positional arguments" and "options" when displaying help messages. When there is a better conceptual grouping of arguments than this default one, appropriate groups can be created using the :meth:`add_argument_group` method:: |