Commit 83343309 authored by Benjamin Peterson's avatar Benjamin Peterson

Fix typo in whatsnew

parent 71f3b854
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment