Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 811f3dc

Browse files
committed
Fix typo.
1 parent 3522a58 commit 811f3dc

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Modules/itertoolsmodule.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3411,12 +3411,12 @@ starmap(fun, seq) --> fun(*seq[0]), fun(*seq[1]), ...\n\
34113411
tee(it, n=2) --> (it1, it2 , ... itn) splits one iterator into n\n\
34123412
takewhile(pred, seq) --> seq[0], seq[1], until pred fails\n\
34133413
zip_longest(p, q, ...) --> (p[0], q[0]), (p[1], q[1]), ... \n\
3414-
+\n\
3415-
+Combinatoric generators:\n\
3416-
+product(p, q, ... [repeat=1]) --> cartesian product\n\
3417-
+permutations(p[, r])\n\
3418-
+combinations(p[, r])\n\
3419-
+combinations_with_replacement(p[, r])\n\
3414+
\n\
3415+
Combinatoric generators:\n\
3416+
product(p, q, ... [repeat=1]) --> cartesian product\n\
3417+
permutations(p[, r])\n\
3418+
combinations(p[, r])\n\
3419+
combinations_with_replacement(p[, r])\n\
34203420
");
34213421

34223422

0 commit comments

Comments
 (0)