[Python-checkins] python/dist/src/Lib/encodings koi8_u.py, 1.1, 1.1.18.1

doko at users.sourceforge.net doko at users.sourceforge.net
Tue Aug 24 23:37:51 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/encodings
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29460/Lib/encodings

Modified Files:
      Tag: release23-maint
	koi8_u.py 
Log Message:
- Bug #902501: fix unicode value of CYRILLIC CAPITAL LETTER UKRAINIAN IE
  in KOI8-U to unicode convertion table.


Index: koi8_u.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/encodings/koi8_u.py,v
retrieving revision 1.1
retrieving revision 1.1.18.1
diff -u -d -r1.1 -r1.1.18.1
--- koi8_u.py	17 Oct 2002 22:15:33 -0000	1.1
+++ koi8_u.py	24 Aug 2004 21:37:47 -0000	1.1.18.1
@@ -43,7 +43,7 @@
         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



More information about the Python-checkins mailing list