From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:20:14 +0000 (+0100) Subject: [3.13] Fix typo in itertools docs (gh-127995) (gh-127996) X-Git-Tag: v3.13.2~192 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=231c93923d7c13ef5238b8391aaa39adb95e8e77;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix typo in itertools docs (gh-127995) (gh-127996) --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index cc7b63ea9cef..3b07be962002 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -686,7 +686,7 @@ loops that truncate the stream. consumed from the input iterator and there is no way to access it. This could be an issue if an application wants to further consume the input iterator after *takewhile* has been run to exhaustion. To work - around this problem, consider using `more-iterools before_and_after() + around this problem, consider using `more-itertools before_and_after() `_ instead.