python -m py_compile script.py
py_compile — Compile Python source files
import py_compile
py_compile.compile('my_script.py')
You can use pylint to find syntax errors as well as more subtle errors, such as accessing undefined variables in some rarely-used conditional branch.
One way is to do something like this (for test.py
):
python -c "__import__('compiler').parse(open('test.py').read())"
This works for Python 2.x.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With