Lines Matching refs:str
92 str(self.db.mirrored(char)),
93 str(self.db.combining(char)),
359 def NFC(str):
360 return unicodedata.normalize("NFC", str)
362 def NFKC(str):
363 return unicodedata.normalize("NFKC", str)
365 def NFD(str):
366 return unicodedata.normalize("NFD", str)
368 def NFKD(str):
369 return unicodedata.normalize("NFKD", str)