Hi,

as I see, pylint in Jessie does not yet support Python 3:

$ cat python3print.py
#!/usr/bin/python3
import sys
print("Hello, pylint", file=sys.stderr)
$ pylint -E python3print.py && echo OK
No config file found, using default configuration
************* Module python3print
E:  3, 0: invalid syntax (syntax-error)
$

Is there any workaround to correct this?

Thanks in advance!

PS 1: There is one, of course: Use pyflakes3. But pyflakes is not a
full replacement for pylint.

PS 2: And there is pychecker, but I'ld strongly discourage from ever
using it. It imports and executes the unknown code under test...


--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to