Beispiel #1
0
 def add(self,word):
     """Add a word to the user's personal word list."""
     self._check_this()
     word = EnchantStr(word)
     _e.dict_add(self._this,word.encode())
Beispiel #2
0
 def add(self, word):
     """Add a word to the user's personal word list."""
     self._check_this()
     _e.dict_add(self._this, word.encode())
Beispiel #3
0
 def add(self,word):
     """Add a word to the user's personal word list."""
     self._check_this()
     word = self._StringClass(word)
     _e.dict_add(self._this,word.encode())