Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 8 down vote accepted

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).

share|improve this answer
python -m py_compile script.py
share|improve this answer

Or from emacs (or vim) you could run python -c 'import x' where x is the name of your file minus the .py extension.

share|improve this answer
But, that does run the (non-function) code... – SamB Aug 10 '11 at 19:52

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.

share|improve this answer

You can use pylint, pychecker, pyflakes etc. from Emacs' compile command (M-x compile).

Hint: bind a key (say, F5) to recompile.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.