Compile (but do not run) a Python script

asmeurer picture asmeurer · Dec 27, 2010 · Viewed 97.3k times · Source

Possible Duplicate:
How can I check the syntax of Python script without executing it?

How do I compile a Python script without running it? I just want to check the script for syntax errors. I was hoping for a simple command line switch, but I didn't see anything in python --help. I'd like an answer for both Python 2 and Python 3.

Answer

Mark Johnson picture Mark Johnson · Dec 8, 2011
python -m py_compile script.py