Fix typo in whatsnew

This commit is contained in:
Benjamin Peterson 2008-05-04 03:05:49 +00:00
parent 71f3b85497
commit 8334330951
1 changed files with 3 additions and 1 deletions

View 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