]> granicus.if.org Git - python/commitdiff
#2536: fix itertools.permutations and itertools.combinations docstrings.
authorGeorg Brandl <georg@python.org>
Tue, 10 Jun 2008 12:46:39 +0000 (12:46 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 10 Jun 2008 12:46:39 +0000 (12:46 +0000)
Modules/itertoolsmodule.c

index 261e8f1b6f8866108efcb8a5c97edba2fd946d5d..18a1229b14f730b6541730f815acf73a5efaba9a 100644 (file)
@@ -2198,7 +2198,7 @@ empty:
 }
 
 PyDoc_STRVAR(combinations_doc,
-"combinations(iterables) --> combinations object\n\
+"combinations(iterable[, r]) --> combinations object\n\
 \n\
 Return successive r-length combinations of elements in the iterable.\n\n\
 combinations(range(4), 3) --> (0,1,2), (0,1,3), (0,2,3), (1,2,3)");
@@ -2469,10 +2469,10 @@ empty:
 }
 
 PyDoc_STRVAR(permutations_doc,
-"permutations(iterables[, r]) --> permutations object\n\
+"permutations(iterable[, r]) --> permutations object\n\
 \n\
 Return successive r-length permutations of elements in the iterable.\n\n\
-permutations(range(4), 3) --> (0,1,2), (0,1,3), (0,2,3), (1,2,3)");
+permutations(range(3), 2) --> (0,1), (0,2), (1,0), (1,2), (2,0), (2,1)");
 
 static PyTypeObject permutations_type = {
        PyVarObject_HEAD_INIT(NULL, 0)