From: Hugo van Kemenade Date: Tue, 26 Dec 2023 21:54:07 +0000 (+0200) Subject: [3.11] gh-101100: Fix Sphinx warnings in `library/bisect.rst` (GH-113496) (#113505) X-Git-Tag: v3.11.8~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b5d774679bcd28078f6f9c693bf09a7f786c76c;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-101100: Fix Sphinx warnings in `library/bisect.rst` (GH-113496) (#113505) --- diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst index d4abd7a6313d..75d16dc3e102 100644 --- a/Doc/library/bisect.rst +++ b/Doc/library/bisect.rst @@ -73,7 +73,7 @@ The following functions are provided: Insert *x* in *a* in sorted order. This function first runs :py:func:`~bisect.bisect_left` to locate an insertion point. - Next, it runs the :meth:`insert` method on *a* to insert *x* at the + Next, it runs the :meth:`!insert` method on *a* to insert *x* at the appropriate position to maintain sort order. To support inserting records in a table, the *key* function (if any) is @@ -93,7 +93,7 @@ The following functions are provided: entries of *x*. This function first runs :py:func:`~bisect.bisect_right` to locate an insertion point. - Next, it runs the :meth:`insert` method on *a* to insert *x* at the + Next, it runs the :meth:`!insert` method on *a* to insert *x* at the appropriate position to maintain sort order. To support inserting records in a table, the *key* function (if any) is diff --git a/Doc/tools/.nitignore b/Doc/tools/.nitignore index 892ead429ec1..98d915fb1d6c 100644 --- a/Doc/tools/.nitignore +++ b/Doc/tools/.nitignore @@ -31,7 +31,6 @@ Doc/library/asyncio-policy.rst Doc/library/asyncio-subprocess.rst Doc/library/asyncio-task.rst Doc/library/bdb.rst -Doc/library/bisect.rst Doc/library/calendar.rst Doc/library/cmd.rst Doc/library/collections.rst