]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in whatsnew
authorBenjamin Peterson <benjamin@python.org>
Sun, 4 May 2008 03:05:49 +0000 (03:05 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 4 May 2008 03:05:49 +0000 (03:05 +0000)
Doc/whatsnew/2.6.rst

index 8a3a9d27879c7585c781d3cc210444f55047c549..80a6c3e9664f62ff3380a1e85c1590508f444fb0 100644 (file)
@@ -734,7 +734,8 @@ and it also supports the ``b''`` notation.
 
 There's also a ``__future__`` import that causes all string literals
 to become Unicode strings.  This means that ``\u`` escape sequences 
-can be used to include Unicode characters.
+can be used to include Unicode characters::
+
 
     from __future__ import unicode_literals
 
@@ -744,6 +745,7 @@ can be used to include Unicode characters.
     print len(s)               # 12 Unicode characters
 
 
+
 .. seealso::
 
    :pep:`3112` - Bytes literals in Python 3000