GitXplorerGitXplorer
d

SpellCheckedObject

public
10 stars
3 forks
0 issues

Commits

List of commits on branch master.
Unverified
e0b9418c0c402c3bbfb2cee9eeef29a182e1430d

Add license file

committed 12 years ago
Unverified
e6762578989e87cee4c2312f03f979150e05a1ed

Merge pull request #1 from NorthIsUp/patch-2

ddlorenc committed 12 years ago
Unverified
b08c21c3cd633d9f578a9b9a6ef8fe4db775f6d4

Update README.rst

NNorthIsUp committed 12 years ago
Unverified
3c98e791bdc6c394ba907fb90840d5a3dc352e16

Initial Commit

committed 12 years ago
Unverified
fb8f7b5266d705b400d08d5755704c6502c7dfd6

Initial commit

ddlorenc committed 12 years ago

README

The README file for this repository.

Spell Checking for Python

For when spelling is hard

Usage

from SpellCheckedObject import SpellCheckedObject class CantSpell(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