Python.sublime-build (273B)
1 { 2 "shell_cmd": "python -u \"$file\"", 3 "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", 4 "selector": "source.python", 5 6 "env": {"PYTHONIOENCODING": "utf-8"}, 7 8 "variants": 9 [ 10 { 11 "name": "Syntax Check", 12 "shell_cmd": "python -m py_compile \"${file}\"", 13 } 14 ] 15 }