Closed
Description
Hello,
I'm testing pylint --py3k
with a python 3 env (Python 3.5.2) with a basic file but the command is not returning any output:
PS. Python 3.5.2
is the default version on ubuntu xenial.
print "hello"
try:
pass
except Exception, e:
pass
a = xrange(10**8)
Version
pylint --version
pylint 2.3.1
astroid 2.2.5
Python 3.5.2 (default, Nov 12 2018, 13:43:14)
[GCC 5.4.0 20160609]
with a python 2 (and pylint 1.9.4, astroid 1.6.6
) it's working well, except for the exception syntax. (which is already mentioned in #2582)
I understand that two different pylint version for two different python versions, but are they maintained separately ? if yes, why ?
Thanks !