Python's IDLE has 'Check Module' (Alt-X) to check the syntax which can be called without needing to run the code. Is there an equivalent way to do this in Emacs instead of running and executing the code?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use Pyflakes together with Flymake in order to get instant notification when your python code is valid (and avoids a few common pitfalls as well). |
|||
|
|
|
Or from emacs (or vim) you could run |
|||
|
|
|
You can use pylint for such things and there seems to be a way to integrate it into emacs, but I've never done the latter b/c I'm a vim user. |
|||
|
|
|
You can use pylint, pychecker, pyflakes etc. from Emacs' Hint: bind a key (say, F5) to |
|||
|
|