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())
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())