[Python-checkins] bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) (GH-23824)

rhettinger webhook-mailer at python.org
Fri Dec 18 19:56:01 EST 2020


https://github.com/python/cpython/commit/eef33e6d49d05aad4111da4ad2d9cb34e7a5206c
commit: eef33e6d49d05aad4111da4ad2d9cb34e7a5206c
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2020-12-18T16:55:52-08:00
summary:

bpo-42670: Fix a missing word in the itertools.product() docs (GH-23823) (GH-23824)

files:
M Doc/library/itertools.rst

diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 3de66c9349281..85f4928ce84fb 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -565,7 +565,7 @@ loops that truncate the stream.
 
    Before :func:`product` runs, it completely consumes the input iterables,
    keeping pools of values in memory to generate the products.  Accordingly,
-   it only useful with finite inputs.
+   it is only useful with finite inputs.
 
 .. function:: repeat(object[, times])
 



More information about the Python-checkins mailing list