[Python-checkins] r62737 - python/trunk/Doc/whatsnew/2.6.rst

georg.brandl python-checkins at python.org
Mon May 5 22:59:06 CEST 2008


Author: georg.brandl
Date: Mon May  5 22:59:05 2008
New Revision: 62737

Log:
#2769: markup glitch.


Modified:
   python/trunk/Doc/whatsnew/2.6.rst

Modified: python/trunk/Doc/whatsnew/2.6.rst
==============================================================================
--- python/trunk/Doc/whatsnew/2.6.rst	(original)
+++ python/trunk/Doc/whatsnew/2.6.rst	Mon May  5 22:59:05 2008
@@ -1693,7 +1693,7 @@
 
   ``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), 


More information about the Python-checkins mailing list