summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-27 08:54:53 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-27 08:54:53 (GMT)
commit186729e81211ad04a2db523c3ac9e8e79aed3fd9 (patch)
treeaed79a9b8f6c84dba56878a45d2c128bc68502ab /Doc/howto
parentfb404f528a1c0122f72ad4ab12cd5c26e5d13835 (diff)
parentd2d6beaa69e6f9699925f9ad8a8630b0c1924c2b (diff)
downloadcpython-186729e81211ad04a2db523c3ac9e8e79aed3fd9.zip
cpython-186729e81211ad04a2db523c3ac9e8e79aed3fd9.tar.gz
cpython-186729e81211ad04a2db523c3ac9e8e79aed3fd9.tar.bz2
merge with 3.3
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/unicode.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
index 4fc8c5c..2920aa1 100644
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -532,7 +532,7 @@ of partial coding sequences. The work of implementing this has already been
done for you: the built-in :func:`open` function can return a file-like object
that assumes the file's contents are in a specified encoding and accepts Unicode
parameters for methods such as :meth:`~io.TextIOBase.read` and
-:meth:`~io.TextIOBase.write`. This works through:func:`open`\'s *encoding* and
+:meth:`~io.TextIOBase.write`. This works through :func:`open`\'s *encoding* and
*errors* parameters which are interpreted just like those in :meth:`str.encode`
and :meth:`bytes.decode`.