syntax-checking

Compile (but do not run) a Python script

Compile (but do not run) a Python script Question: I want to check a script for syntax errors. In both 2.x and 3.x, how can I compile the script without running it? Asked By: asmeurer || Source Answers: py_compile — Compile Python source files import py_compile py_compile.compile(‘my_script.py’) Answered By: yurymik One way is to do …

Total answers: 4

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

python: how to check syntax of python file/script without executing it? Question: I used to use perl -c programfile to check the syntax of a Perl program and then exit without executing it. Is there an equivalent way to do this for a Python script? Asked By: Eugene Yarmash || Source Answers: You can use …

Total answers: 9