summaryrefslogtreecommitdiff
path: root/Doc/howto
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-09-11 20:42:29 +0000
committerBenjamin Peterson <benjamin@python.org>2009-09-11 20:42:29 +0000
commit1f316975ac23378c805d5816a15250e3134a1e1e (patch)
tree503ef35fc622b3bec958575bd910a315356856f0 /Doc/howto
parenta59750f4d6decf2de11aeea0f29b44da1f0547f8 (diff)
downloadcpython-git-1f316975ac23378c805d5816a15250e3134a1e1e.tar.gz
kill reference to default encoding #6889
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/unicode.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
index c9b6720fed..3b337727f6 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 'ascii'
-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.