def NotExceptionSyl(codematch,charmatch,form,phone):
if re.search(r'\.',form): return(1)
## check pronunciation marked in syllable dict, if it exists and it is different from the current phone, disregard current phone.
if 'CR' in codematch:
#exception for CR = ถร ผร ดล ตล ถล ทล บล ดว ตว ถว ทว บว ปว ผว สว
if re.match(r'ผ ร|ด ล|ต ล|ท ล|ด ว|ต ว|ท ว|บ ว|ป ว|พ ว|ฟ ว|ผ ว|ส ล|ส ว|ร ร|ศ ล|ศ ว',charmatch): return(-1)
#exception for AK = กย กง ขง คง คม จง จน จก ฉย ชง ดย ดง ดน ดม ถย บย บง บน บม ปง ผม พง ฟย ฟง ฟน ฟม ซย ซง ซน ซม ถร บล บว ปว พร พว นน ยด คว
if 'AK' in codematch: #check for leadnng and followinf consinant
clst = charmatch.split(' ')
if clst[1] not in AK[clst[0]]: return(-1)
#Case 1 xัว with sound like "..aw"
if re.search(r'\u0E31[\0E48-\u0E4B]?ว]',form) and 'aw' in phone: return(-1)
#Case 5 check for speller ข Only 3 vowel forms can be used ัุ เ
if re.search(r'[ก-ฮ] ข',charmatch) and not re.search(r'[\u0E38\u0E31\u0E40]',form): return(-1)
# Case xร - xon except Xรน (กรน ปรน)
if re.search(r'[ก-ฮ] ร$',charmatch) and re.search(r'.an',phone): return(-1)
return(1)
this function will only return -1 or 1, but in python either of them equals True. I guess you want to return -1 as False and 1 as True?
this function is used at nlp.py, line 546 and line 621
if NotExceptionSyl(codematch,charmatch,keymatch,phone):
# ...
Hello, I find that in nlp.py: NotExceptionSyl()
this function will only return -1 or 1, but in python either of them equals True. I guess you want to return -1 as False and 1 as True? this function is used at nlp.py, line 546 and line 621