From: yuki Date: Sun, 9 Apr 2023 02:02:16 +0000 (+0900) Subject: Docs: Fix broken reference `__getitem__` in `string.rst` (#103371) X-Git-Tag: v3.12.0b1~599 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83af8f268629139b9628ff53617671469167146a;p=thirdparty%2FPython%2Fcpython.git Docs: Fix broken reference `__getitem__` in `string.rst` (#103371) --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 5ada82732818..f55074cc5827 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -235,7 +235,7 @@ dictionary keys (e.g., the strings ``'10'`` or ``':-]'``) within a format string The *arg_name* can be followed by any number of index or attribute expressions. An expression of the form ``'.name'`` selects the named attribute using :func:`getattr`, while an expression of the form ``'[index]'`` -does an index lookup using :func:`__getitem__`. +does an index lookup using :meth:`~object.__getitem__`. .. versionchanged:: 3.1 The positional argument specifiers can be omitted for :meth:`str.format`,