Home | History | Annotate | Download | only in test

Lines Matching refs:pools

653             pools = map(tuple, args) * kwds.get('repeat', 1)
654 n = len(pools)
658 if any(len(pool) == 0 for pool in pools):
661 yield tuple(pool[i] for pool, i in zip(pools, indices))
664 if indices[i] == len(pools[i]) - 1:
669 yield tuple(pool[i] for pool, i in zip(pools, indices))
676 pools = map(tuple, args) * kwds.get('repeat', 1)
678 for pool in pools: