Skip to content

Commit 0727771

Browse files
committed
Sync the code equivalent signatures
1 parent a5d0d23 commit 0727771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/random.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ or the :pypi:`more-itertools` project:
637637
import random
638638

639639
def random_product(*iterables, repeat=1):
640-
"Random selection from itertools.product(*args, **kwds)"
640+
"Random selection from itertools.product(*iterables, repeat=repeat)"
641641
pools = tuple(map(tuple, iterables)) * repeat
642642
return tuple(map(random.choice, pools))
643643

0 commit comments

Comments
 (0)