mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
fix off-by-one error (closes #21330)
This commit is contained in:
parent
cb5ec77d33
commit
9e599673b4
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ another and managed to catch on.
|
|||
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue