Browse Source

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

pull/23826/head
Zackery Spytz 6 years ago
committed by GitHub
parent
commit
074ad5123f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Doc/library/itertools.rst

2
Doc/library/itertools.rst

@ -582,7 +582,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])

Loading…
Cancel
Save