merge with 3.3

This commit is contained in:
Georg Brandl 2013-10-06 13:07:14 +02:00
commit 736295c347
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ like those in :meth:`str.encode` and :meth:`bytes.decode`.
Reading Unicode from a file is therefore simple::
with open('unicode.rst', encoding='utf-8') as f:
with open('unicode.txt', encoding='utf-8') as f:
for line in f:
print(repr(line))