Question
Asked By – asmeurer
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.
Now we will see solution for issue: Compile (but do not run) a Python script [duplicate]
Answer
py_compile — Compile Python source files
import py_compile
py_compile.compile('my_script.py')
This question is answered By – yurymik
This answer is collected from stackoverflow and reviewed by FixPython community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0