summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2023-05-19 13:50:34 (GMT)
committerGitHub <noreply@github.com>2023-05-19 13:50:34 (GMT)
commitab8f54668b0c49186f1da8e127e303ca73220017 (patch)
tree0aae84e12feeba6efd14344cddf2886c7d29edb5
parenta412fc58ccb8c6739b179137321cbbb1abebcd2f (diff)
downloadcpython-ab8f54668b0c49186f1da8e127e303ca73220017.zip
cpython-ab8f54668b0c49186f1da8e127e303ca73220017.tar.gz
cpython-ab8f54668b0c49186f1da8e127e303ca73220017.tar.bz2
gh-103921: Rename "type" header in argparse docs (#104654)
This allows :keyword:`type` to link to docs for the new `type` statement (being written in gh-104642) instead of to this header in the argparse docs.
-rw-r--r--Doc/library/argparse.rst30
1 files changed, 15 insertions, 15 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index 33e367f..fbffa71 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -57,20 +57,20 @@ the extracted data in a :class:`argparse.Namespace` object::
Quick Links for add_argument()
------------------------------
-====================== =========================================================== ==========================================================================================================================
-Name Description Values
-====================== =========================================================== ==========================================================================================================================
-action_ Specify how an argument should be handled ``'store'``, ``'store_const'``, ``'store_true'``, ``'append'``, ``'append_const'``, ``'count'``, ``'help'``, ``'version'``
-choices_ Limit values to a specific set of choices ``['foo', 'bar']``, ``range(1, 10)``, or :class:`~collections.abc.Container` instance
-const_ Store a constant value
-default_ Default value used when an argument is not provided Defaults to ``None``
-dest_ Specify the attribute name used in the result namespace
-help_ Help message for an argument
-metavar_ Alternate display name for the argument as shown in help
-nargs_ Number of times the argument can be used :class:`int`, ``'?'``, ``'*'``, or ``'+'``
-required_ Indicate whether an argument is required or optional ``True`` or ``False``
-type_ Automatically convert an argument to the given type :class:`int`, :class:`float`, ``argparse.FileType('w')``, or callable function
-====================== =========================================================== ==========================================================================================================================
+============================ =========================================================== ==========================================================================================================================
+Name Description Values
+============================ =========================================================== ==========================================================================================================================
+action_ Specify how an argument should be handled ``'store'``, ``'store_const'``, ``'store_true'``, ``'append'``, ``'append_const'``, ``'count'``, ``'help'``, ``'version'``
+choices_ Limit values to a specific set of choices ``['foo', 'bar']``, ``range(1, 10)``, or :class:`~collections.abc.Container` instance
+const_ Store a constant value
+default_ Default value used when an argument is not provided Defaults to ``None``
+dest_ Specify the attribute name used in the result namespace
+help_ Help message for an argument
+metavar_ Alternate display name for the argument as shown in help
+nargs_ Number of times the argument can be used :class:`int`, ``'?'``, ``'*'``, or ``'+'``
+required_ Indicate whether an argument is required or optional ``True`` or ``False``
+:ref:`type <argparse-type>` Automatically convert an argument to the given type :class:`int`, :class:`float`, ``argparse.FileType('w')``, or callable function
+============================ =========================================================== ==========================================================================================================================
Example
@@ -1132,7 +1132,7 @@ command-line argument was not present::
Namespace(foo='1')
-.. _type:
+.. _argparse-type:
type
^^^^