Compile (but do not run) a Python script [duplicate]

人盡茶涼 提交于 2019-12-02 13:54:59
yurymik

py_compile — Compile Python source files

import py_compile
py_compile.compile('my_script.py')
python -m py_compile script.py
pafcu

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!