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

I usually use Perl's -c switch to check the syntax of the program and then exit without executing it. Is there an equivalent way to do this for a python script?

share|improve this question
pretty similar to stackoverflow.com/questions/205704/… – dietbuddha Nov 26 '10 at 10:17

3 Answers

up vote 35 down vote accepted

You can check the syntax by compiling it:

python -m py_compile script.py
share|improve this answer
2  
This is the One True Way. – bukzor Apr 13 '12 at 23:22
1  
import script, but all code must be in functions. Which is good practice anyway. I've even adopted this for shell scripts. From here it's a small step to unit testing. – Henk Langeveld Aug 10 '12 at 12:07
won't work if you have an embedded engine with injected modules – naxa Feb 18 at 13:41
@naxa What's the solution for that type of environment? – Mark Johnson Feb 19 at 18:00
3  
python -m compileall can also do directories recursively and has a better command line interface. – C2H5OH Feb 20 at 9:19

You can use these tools:

share|improve this answer
2  
+1 for pyflakes, love it – Erik Kronberg Nov 26 '10 at 10:42
1  
All of these do much more than check the syntax. Really this isn't the answer. – Matt Joiner Dec 21 '11 at 1:57
import sys
filename = sys.argv[1]  #changed from sys.argv[0] by original poster
source = open(filename, 'r').read() + '\n'
compile(source, filename, 'exec')

Save this as checker.py and run python checker.py yourpyfile.py.

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.