@@ -199,9 +199,9 @@ loops that truncate the stream.
199
199
200
200
Return *r * length subsequences of elements from the input *iterable *.
201
201
202
- Combinations are emitted in lexicographic sort order. So, if the
203
- input *iterable * is sorted, the combination tuples will be produced
204
- in sorted order.
202
+ The combination tuples are emitted in lexicographic ordering according to
203
+ the order of the input *iterable *. So, if the input * iterable * is sorted,
204
+ the combination tuples will be produced in sorted order.
205
205
206
206
Elements are treated as unique based on their position, not on their
207
207
value. So if the input elements are unique, there will be no repeat
@@ -248,9 +248,9 @@ loops that truncate the stream.
248
248
Return *r * length subsequences of elements from the input *iterable *
249
249
allowing individual elements to be repeated more than once.
250
250
251
- Combinations are emitted in lexicographic sort order. So, if the
252
- input *iterable * is sorted, the combination tuples will be produced
253
- in sorted order.
251
+ The combination tuples are emitted in lexicographic ordering according to
252
+ the order of the input *iterable *. So, if the input * iterable * is sorted,
253
+ the combination tuples will be produced in sorted order.
254
254
255
255
Elements are treated as unique based on their position, not on their
256
256
value. So if the input elements are unique, the generated combinations
@@ -484,9 +484,9 @@ loops that truncate the stream.
484
484
of the *iterable * and all possible full-length permutations
485
485
are generated.
486
486
487
- Permutations are emitted in lexicographic sort order. So, if the
488
- input *iterable * is sorted, the permutation tuples will be produced
489
- in sorted order.
487
+ The permutation tuples are emitted in lexicographic ordering according to
488
+ the order of the input *iterable *. So, if the input * iterable * is sorted,
489
+ the combination tuples will be produced in sorted order.
490
490
491
491
Elements are treated as unique based on their position, not on their
492
492
value. So if the input elements are unique, there will be no repeat
0 commit comments