in en/pythonpath/lightproof_impl_en.py [0:0]
def suggest(rLoc, word):
global suggestions
if not word:
return word
if word not in suggestions:
x = spellchecker.spell("_" + word, rLoc, ())
if not x:
return word
t = x.getAlternatives()
suggestions[word] = "\\n".join(t)
return suggestions[word]