Spell Checking for PythonFor when spelling is hardUsage>>> from SpellCheckedObject import SpellCheckedObject >>> classCantSpell(SpellCheckedObject): def test(self, x, y): return x + y @property def prop(self): return 7>>> c = CantSpell() >>> c.test(3, 4) 7 >>> c.testt(3, 4) 7