[Python-checkins] cpython (merge 3.3 -> default): merge with 3.3

georg.brandl python-checkins at python.org
Sun Oct 6 13:06:34 CEST 2013


http://hg.python.org/cpython/rev/91cf263b711b
changeset:   86076:91cf263b711b
parent:      86074:ebf2b999c9b0
parent:      86075:8eff897b296b
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 13:07:14 2013 +0200
summary:
  merge with 3.3

files:
  Doc/howto/unicode.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -537,7 +537,7 @@
 
 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))
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list