From 6e4c60902b0e4f526cddc36d876a4c4acada8f0d Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 28 Feb 2024 17:11:05 -0600 Subject: [PATCH] Update an out-of-date example in the itertools recipe intro (gh-116082) (cherry picked from commit f484a2a7486d0b4c7c11901f6c668eb23b74e81f) Co-authored-by: Raymond Hettinger --- Doc/library/itertools.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 8ae7a304ff12f4..bb837d8c1b1d57 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -770,7 +770,7 @@ The primary purpose of the itertools recipes is educational. The recipes show various ways of thinking about individual tools — for example, that ``chain.from_iterable`` is related to the concept of flattening. The recipes also give ideas about ways that the tools can be combined — for example, how -``compress()`` and ``range()`` can work together. The recipes also show patterns +``starmap()`` and ``repeat()`` can work together. The recipes also show patterns for using itertools with the :mod:`operator` and :mod:`collections` modules as well as with the built-in itertools such as ``map()``, ``filter()``, ``reversed()``, and ``enumerate()``.