[Python-checkins] cpython (2.7): fix off-by-one error (closes #21330)

benjamin.peterson python-checkins at python.org
Wed Apr 23 03:55:16 CEST 2014


http://hg.python.org/cpython/rev/b428b803f71f
changeset:   90434:b428b803f71f
branch:      2.7
parent:      90431:2b8d9276ad5b
user:        Benjamin Peterson <benjamin at python.org>
date:        Tue Apr 22 21:54:10 2014 -0400
summary:
  fix off-by-one error (closes #21330)

files:
  Doc/howto/unicode.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -49,7 +49,7 @@
 
 255 characters aren't very many.  For example, you can't fit both the accented
 characters used in Western Europe and the Cyrillic alphabet used for Russian
-into the 128-255 range because there are more than 127 such characters.
+into the 128-255 range because there are more than 128 such characters.
 
 You could write files using different codes (all your Russian files in a coding
 system called KOI8, all your French files in a different coding system called

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list