You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import mojimoji
def baguru(text):
text = mojimoji.zen_to_han(text, kana=False)
text = mojimoji.han_to_zen(text, digit=False, ascii=False)
return text
def baguranai(text):
text = mojimoji.zen_to_han(text, kana=False)
a=0
for i in range(10):
a+=i
text = mojimoji.han_to_zen(text, digit=False, ascii=False)
return text
text ="゙ンライフレキ"
text = baguru(text)
#text = baguranai(text)
print(text)
この関数を実行したとき, baguru関数を実行すると double free or corruption (out) のバグが出ました。
baguru関数とbaguranai の違いは、間に別の処理が挟まってるかどうかだけです。
ちなみに文字列による差も激しく、 先頭が濁点の場合しかバグりませんでした。
The text was updated successfully, but these errors were encountered: