What's the best way to spell check strings and comments inside Python source code?
A:
The easiest i would say is to use grep or perl to pull out all the data, and then pass it into a spellchecker (ie Word or the "spell" linux command)
mlathe
2010-01-28 00:00:16
This isn't a complete solution, but it's the basic direction I took, which seems the most promising.
Chip Tol
2010-02-05 20:54:58
+2
A:
If you are an Emacs user you can add this to your .emacs
(add-hook 'text-mode-hook 'turn-on-flyspell)
(add-hook 'python-mode-hook 'flyspell-prog-mode)
kriss
2010-01-28 00:06:30
+1
A:
The PyDev plugin for the Eclipse IDE does it.
According to the release history, it was added in version 1.3.11 and it depends on JDT (Java Development Tools).
Craig McQueen
2010-01-28 01:01:54