def addword(word): """Adds word to the dictionary.""" pass def removeword(word): """Removes word from the dictionary.""" pass def findword(word): """Finds word in the dictionary.""" pass def loadDictionary(filename): """Loads dictionary from filename.""" pass def parseWords(wordstring): """Returns a list of word strings, from the wordstring chunk.""" pass def checkspelling(word): """Checks the spelling of ONE word.""" pass def checkchunk(wordstring): """Returns a list of words that have been verified against dictionary""" pass