]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- Bug #902501: fix unicode value of CYRILLIC CAPITAL LETTER UKRAINIAN IE
authorMatthias Klose <doko@ubuntu.com>
Tue, 24 Aug 2004 21:37:49 +0000 (21:37 +0000)
committerMatthias Klose <doko@ubuntu.com>
Tue, 24 Aug 2004 21:37:49 +0000 (21:37 +0000)
  in KOI8-U to unicode convertion table.

Lib/encodings/koi8_u.py
Misc/NEWS

index 43cd04fa0a66ce8208716b3b42c1a339e3131bdc..59020e761426c33b240d3b3811ec351c47e89ae9 100644 (file)
@@ -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
index c274000af82300f745575d50004571b1c29688db..bb26b7795b4b94c74f7ae8eed6c45925128b256f 100644 (file)
--- 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
 -----------