[Python-checkins] r45967 - python/trunk/Doc/howto/unicode.rst
andrew.kuchling
python-checkins at python.org
Thu May 11 18:32:25 CEST 2006
Author: andrew.kuchling
Date: Thu May 11 18:32:24 2006
New Revision: 45967
Modified:
python/trunk/Doc/howto/unicode.rst
Log:
typo fix
Modified: python/trunk/Doc/howto/unicode.rst
==============================================================================
--- python/trunk/Doc/howto/unicode.rst (original)
+++ python/trunk/Doc/howto/unicode.rst Thu May 11 18:32:24 2006
@@ -158,7 +158,7 @@
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 are simple; for each code point:
+ASCII encoding 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.
@@ -721,7 +721,7 @@
Thanks to the following people who have noted errors or offered
suggestions on this article: Nicholas Bastin,
Marius Gedminas, Kent Johnson, Ken Krugler,
-Marc-André Lemburg, Martin von Löwis.
+Marc-André Lemburg, Martin von Löwis, Chad Whitacre.
Version 1.0: posted August 5 2005.
More information about the Python-checkins
mailing list