Made it work on Ubuntu 18.04.

This commit is contained in:
Andrew Hamilton 2018-03-16 11:31:20 +10:00
parent ddd139f69f
commit 2454af45a2
4 changed files with 6 additions and 6 deletions

View file

@ -1 +1 @@
input/hi.py:4: error: Missing parentheses in call to 'print'. Did you mean print(int "hi")?
input/hi.py:4: error: Missing parentheses in call to 'print'. Did you mean print("hi")?

View file

@ -1,3 +1,3 @@
Splint 3.1.2 --- 01 Dec 2016
Splint 3.1.2 --- 20 Feb 2018
Finished checking --- no warnings

View file

@ -1,3 +1,3 @@
Splint 3.1.2 --- 01 Dec 2016
Splint 3.1.2 --- 20 Feb 2018
Finished checking --- no warnings

View file

@ -617,10 +617,10 @@ def cppcheck(path):
return _run_command(["cppcheck", path])
@deps(deps={"php7.1-cli"}, url="https://en.wikipedia.org/wiki/PHP",
executables={"php7.1"})
@deps(deps={"php7.2-cli"}, url="https://en.wikipedia.org/wiki/PHP",
executables={"php7.2"})
def php7_syntax(path):
return _run_command(["php7.1", "--syntax-check", path])
return _run_command(["php7.2", "--syntax-check", path])
def _pil_pixels(pil_image):