diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-09-21 14:39:26 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-09-21 14:39:26 (GMT) |
commit | c1eb92bb1a7e910b260b85b2bbb84d7d4874f266 (patch) | |
tree | 2e57a7ababa5bd54258aa623b8d26e47e2314b40 /Doc/howto | |
parent | c2e303348bb0a128fec301cd71c4625d4f86add1 (diff) | |
download | cpython-c1eb92bb1a7e910b260b85b2bbb84d7d4874f266.zip cpython-c1eb92bb1a7e910b260b85b2bbb84d7d4874f266.tar.gz cpython-c1eb92bb1a7e910b260b85b2bbb84d7d4874f266.tar.bz2 |
Merged revisions 74740 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74740 | benjamin.peterson | 2009-09-11 16:42:29 -0400 (Fri, 11 Sep 2009) | 1 line
kill reference to default encoding #6889
........
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/unicode.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst index 59ea825..a57fe27 100644 --- a/Doc/howto/unicode.rst +++ b/Doc/howto/unicode.rst @@ -150,9 +150,8 @@ Generally people don't use this encoding, instead choosing other encodings that are more efficient and convenient. Encodings don't have to handle every possible Unicode character, and most -encodings don't. For example, Python's default encoding is the 'UTF-8' -encoding. The rules for converting a Unicode string into the ASCII encoding are -simple; for each code point: +encodings don't. The rules for converting a Unicode string into the ASCII +encoding, for example, are simple; for each code point: 1. If the code point is < 128, each byte is the same as the value of the code point. |