Example #1
0
 def is_added(self, word):
     """Check whether a word is in the personal word list."""
     self._check_this()
     return _e.dict_is_added(self._this, word.encode())
Example #2
0
 def is_added(self,word):
     """Check whether a word is in the personal word list."""
     self._check_this()
     word = EnchantStr(word)
     return _e.dict_is_added(self._this,word.encode())