From: Matthias Klose Date: Tue, 24 Aug 2004 21:37:49 +0000 (+0000) Subject: - Bug #902501: fix unicode value of CYRILLIC CAPITAL LETTER UKRAINIAN IE X-Git-Tag: v2.3.5c1~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=863e71a951dbb8e2e95ac563d859bd220fd9dad4;p=thirdparty%2FPython%2Fcpython.git - Bug #902501: fix unicode value of CYRILLIC CAPITAL LETTER UKRAINIAN IE in KOI8-U to unicode convertion table. --- diff --git a/Lib/encodings/koi8_u.py b/Lib/encodings/koi8_u.py index 43cd04fa0a66..59020e761426 100644 --- a/Lib/encodings/koi8_u.py +++ b/Lib/encodings/koi8_u.py @@ -43,7 +43,7 @@ decoding_map.update({ 0x00a6: 0x0456, # CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I 0x00a7: 0x0457, # CYRILLIC SMALL LETTER YI (UKRAINIAN) 0x00ad: 0x0491, # CYRILLIC SMALL LETTER UKRAINIAN GHE WITH UPTURN - 0x00b4: 0x0403, # CYRILLIC CAPITAL LETTER UKRAINIAN IE + 0x00b4: 0x0404, # CYRILLIC CAPITAL LETTER UKRAINIAN IE 0x00b6: 0x0406, # CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I 0x00b7: 0x0407, # CYRILLIC CAPITAL LETTER YI (UKRAINIAN) 0x00bd: 0x0490, # CYRILLIC CAPITAL LETTER UKRAINIAN GHE WITH UPTURN diff --git a/Misc/NEWS b/Misc/NEWS index c274000af823..bb26b7795b4b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -104,6 +104,9 @@ Library addition to CVS and RCS directories. .svn directories hold administrative files for the Subversion source control system. +- Bug #902501: fix unicode value of CYRILLIC CAPITAL LETTER UKRAINIAN IE + in KOI8-U to unicode convertion table. + Tools/Demos -----------