示例#1
0
 def remove(self, word):
     """Add a word to the user's personal exclude list."""
     self._check_this()
     _e.dict_remove(self._this, word.encode())
示例#2
0
 def remove(self,word):
     """Add a word to the user's personal exclude list."""
     self._check_this()
     word = EnchantStr(word)
     _e.dict_remove(self._this,word.encode())