diff options
author | Julien Cristau <julien.cristau@logilab.fr> | 2013-06-19 18:02:26 +0200 |
---|---|---|
committer | Julien Cristau <julien.cristau@logilab.fr> | 2013-06-19 18:02:26 +0200 |
commit | d4d69db86b43e3685fdb13c71d49c533c6533330 (patch) | |
tree | 2df12efa80576fadadc840940e3c9caa0e651494 /checkers/exceptions.py | |
parent | 303c4ee6904c8fe9eaa42723ccd492a5d8577ec1 (diff) | |
download | pylint-d4d69db86b43e3685fdb13c71d49c533c6533330.tar.gz |
Mark unpacking-in-except as python2-specific
Diffstat (limited to 'checkers/exceptions.py')
-rw-r--r-- | checkers/exceptions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checkers/exceptions.py b/checkers/exceptions.py index 1e1be2a..00b1e44 100644 --- a/checkers/exceptions.py +++ b/checkers/exceptions.py @@ -75,7 +75,8 @@ MSGS = { 'unpacking-in-except', 'Python3 will not allow implicit unpacking of exceptions in except ' 'clauses. ' - 'See http://www.python.org/dev/peps/pep-3110/'), + 'See http://www.python.org/dev/peps/pep-3110/', + {'maxversion': (3, 0)}), } |