]> granicus.if.org Git - python/commitdiff
kill reference to default encoding #6889
authorBenjamin Peterson <benjamin@python.org>
Fri, 11 Sep 2009 20:42:29 +0000 (20:42 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 11 Sep 2009 20:42:29 +0000 (20:42 +0000)
Doc/howto/unicode.rst

index c9b6720fed1fedc3ce3f29377ad0539d2d0bfaa4..3b337727f643a4d9be17324690b133dfcfb981b2 100644 (file)
@@ -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.