]> granicus.if.org Git - python/commitdiff
#2769: markup glitch.
authorGeorg Brandl <georg@python.org>
Mon, 5 May 2008 20:59:05 +0000 (20:59 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 5 May 2008 20:59:05 +0000 (20:59 +0000)
Doc/whatsnew/2.6.rst

index 17493e7342bc85de3b6a764bde1e2bc25f55e425..e27109b9d538b6f22104f08623a0356a464a1cfa 100644 (file)
@@ -1693,7 +1693,7 @@ complete list of changes, or look through the CVS logs for all the details.
 
   ``permutations(iter[, r])`` returns all the permutations of length *r* of
   the iterable's elements.  If *r* is not specified, it will default to the 
-  number of elements produced by the iterable.
+  number of elements produced by the iterable. ::
 
     itertools.permutations([1,2,3,4], 2) ->
       [(1, 2), (1, 3), (1, 4),