| 1 | def addword(word):
|
| 2 | """Adds word to the dictionary."""
|
| 3 | pass
|
| 4 |
|
| 5 | def removeword(word):
|
| 6 | """Removes word from the dictionary."""
|
| 7 | pass
|
| 8 |
|
| 9 | def findword(word):
|
| 10 | """Finds word in the dictionary."""
|
| 11 | pass
|
| 12 |
|
| 13 | def loadDictionary(filename):
|
| 14 | """Loads dictionary from filename."""
|
| 15 | pass
|
| 16 |
|
| 17 | def parseWords(wordstring):
|
| 18 | """Returns a list of word strings, from the wordstring chunk."""
|
| 19 | pass
|
| 20 |
|
| 21 | def checkspelling(word):
|
| 22 | """Checks the spelling of ONE word."""
|
| 23 | pass
|
| 24 |
|
| 25 | def checkchunk(wordstring):
|
| 26 | """Returns a list of words that have been verified against dictionary"""
|
| 27 | pass |