mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
Small improvements to the itertools docs (GH-123885)
This commit is contained in:
parent
d359a7683e
commit
2afba5ca6d
2 changed files with 26 additions and 8 deletions
|
|
@ -992,12 +992,16 @@ def product1(*args, **kwds):
|
|||
else:
|
||||
return
|
||||
|
||||
def product2(*args, **kwds):
|
||||
def product2(*iterables, repeat=1):
|
||||
'Pure python version used in docs'
|
||||
pools = list(map(tuple, args)) * kwds.get('repeat', 1)
|
||||
if repeat < 0:
|
||||
raise ValueError('repeat argument cannot be negative')
|
||||
pools = [tuple(pool) for pool in iterables] * repeat
|
||||
|
||||
result = [[]]
|
||||
for pool in pools:
|
||||
result = [x+[y] for x in result for y in pool]
|
||||
|
||||
for prod in result:
|
||||
yield tuple(prod)
|
||||
|
||||
|
|
@ -1754,6 +1758,8 @@ def test_tee_recipe(self):
|
|||
# Begin tee() recipe ###########################################
|
||||
|
||||
def tee(iterable, n=2):
|
||||
if n < 0:
|
||||
raise ValueError('n must be >= 0')
|
||||
iterator = iter(iterable)
|
||||
shared_link = [None, None]
|
||||
return tuple(_tee(iterator, shared_link) for _ in range(n))
|
||||
|
|
@ -1829,11 +1835,9 @@ def _tee(iterator, link):
|
|||
self.assertEqual(list(a), list(range(100,2000)))
|
||||
self.assertEqual(list(c), list(range(2,2000)))
|
||||
|
||||
# Tests not applicable to the tee() recipe
|
||||
if False:
|
||||
# test invalid values of n
|
||||
self.assertRaises(TypeError, tee, 'abc', 'invalid')
|
||||
self.assertRaises(ValueError, tee, [], -1)
|
||||
# test invalid values of n
|
||||
self.assertRaises(TypeError, tee, 'abc', 'invalid')
|
||||
self.assertRaises(ValueError, tee, [], -1)
|
||||
|
||||
for n in range(5):
|
||||
result = tee('abc', n)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue