[KoCo-CVS] [Commit] KoreanCodecs/korean/python hangul.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-29 14:24:27
|
perky 02/04/29 07:24:25 Modified: korean/python hangul.py Log: - Add 'L', 'R', 'Z' as pseudo final alphabets Revision Changes Path 1.9 +2 -2 KoreanCodecs/korean/python/hangul.py Index: hangul.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/korean/python/hangul.py,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- hangul.py 26 Apr 2002 07:46:59 -0000 1.8 +++ hangul.py 29 Apr 2002 14:24:25 -0000 1.9 @@ -15,7 +15,7 @@ # Conjoining Jamo Behavior: # http://www.unicode.org/unicode/uni2book/ch03.pdf (section 3.11) # -# $Id: hangul.py,v 1.8 2002/04/26 07:46:59 perky Exp $ +# $Id: hangul.py,v 1.9 2002/04/29 14:24:25 perky Exp $ # class UnicodeHangulError(Exception): @@ -208,7 +208,7 @@ if u'\uac00' <= c <= u'\ud7a3': # hangul return 1, (ord(c) - 0xac00) % 28 > 0 else: - return 0, c in u'013678.bklmnptMN' + return 0, c in u'013678.bklmnptLMNRZ' # Iterator Emulator for ancient versions before 2.1 try: |