From: Yongzi Li <204532581+Yzi-Li@users.noreply.github.com> Date: Mon, 23 Jun 2025 22:53:33 +0000 (+0800) Subject: Docs: Use `arguments` to replace `args` in `argparse.rst` (GH-135510) X-Git-Tag: v3.15.0a1~1205 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=caad163b691b2343d823541cfbf741f481ee9f3e;p=thirdparty%2FPython%2Fcpython.git Docs: Use `arguments` to replace `args` in `argparse.rst` (GH-135510) --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 17f126cc065a..a03d88092dbf 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -955,7 +955,7 @@ See also :ref:`specifying-ambiguous-arguments`. The supported values are: .. index:: single: + (plus); in argparse module -* ``'+'``. Just like ``'*'``, all command-line args present are gathered into a +* ``'+'``. Just like ``'*'``, all command-line arguments present are gathered into a list. Additionally, an error message will be generated if there wasn't at least one command-line argument present. For example::