summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-29 07:16:56 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-29 07:16:56 (GMT)
commit3d596fa90b3c862eb2c0fb67aaf42cf1237c3258 (patch)
tree095308640b340cbecaf2ed9b8f9732ad697d9237 /Doc/howto
parent21527bf72f861435c9b97e8dc3d8945771146fc9 (diff)
downloadcpython-3d596fa90b3c862eb2c0fb67aaf42cf1237c3258.zip
cpython-3d596fa90b3c862eb2c0fb67aaf42cf1237c3258.tar.gz
cpython-3d596fa90b3c862eb2c0fb67aaf42cf1237c3258.tar.bz2
Clarify sentence.
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 2920aa1..9d48a78 100644
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -514,7 +514,7 @@ columns and can return Unicode values from an SQL query.
Unicode data is usually converted to a particular encoding before it gets
written to disk or sent over a socket. It's possible to do all the work
-yourself: open a file, read an 8-bit bytes object from it, and convert the string
+yourself: open a file, read an 8-bit bytes object from it, and convert the bytes
with ``bytes.decode(encoding)``. However, the manual approach is not recommended.
One problem is the multi-byte nature of encodings; one Unicode character can be