Made it work on Ubuntu 18.04.
This commit is contained in:
parent
ddd139f69f
commit
2454af45a2
4 changed files with 6 additions and 6 deletions
|
|
@ -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")?
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
Splint 3.1.2 --- 01 Dec 2016
|
||||
Splint 3.1.2 --- 20 Feb 2018
|
||||
|
||||
Finished checking --- no warnings
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
Splint 3.1.2 --- 01 Dec 2016
|
||||
Splint 3.1.2 --- 20 Feb 2018
|
||||
|
||||
Finished checking --- no warnings
|
||||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue