Fix typo.
This commit is contained in:
parent
3522a58665
commit
811f3dc174
@ -3411,12 +3411,12 @@ starmap(fun, seq) --> fun(*seq[0]), fun(*seq[1]), ...\n\
|
|||||||
tee(it, n=2) --> (it1, it2 , ... itn) splits one iterator into n\n\
|
tee(it, n=2) --> (it1, it2 , ... itn) splits one iterator into n\n\
|
||||||
takewhile(pred, seq) --> seq[0], seq[1], until pred fails\n\
|
takewhile(pred, seq) --> seq[0], seq[1], until pred fails\n\
|
||||||
zip_longest(p, q, ...) --> (p[0], q[0]), (p[1], q[1]), ... \n\
|
zip_longest(p, q, ...) --> (p[0], q[0]), (p[1], q[1]), ... \n\
|
||||||
+\n\
|
\n\
|
||||||
+Combinatoric generators:\n\
|
Combinatoric generators:\n\
|
||||||
+product(p, q, ... [repeat=1]) --> cartesian product\n\
|
product(p, q, ... [repeat=1]) --> cartesian product\n\
|
||||||
+permutations(p[, r])\n\
|
permutations(p[, r])\n\
|
||||||
+combinations(p[, r])\n\
|
combinations(p[, r])\n\
|
||||||
+combinations_with_replacement(p[, r])\n\
|
combinations_with_replacement(p[, r])\n\
|
||||||
");
|
");
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user