diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-16 11:42:39 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-16 11:42:39 +0100 |
commit | 915719c6543ad92336ba5909ba6ab33d31028ad0 (patch) | |
tree | e48afc827c3bb8de757b74e7bbfc53154f7da422 /test/test_func.py | |
parent | 358cf792d4f4c6f27476c315bc815d5eb43e2e75 (diff) | |
download | pylint-915719c6543ad92336ba5909ba6ab33d31028ad0.tar.gz |
typo; fix py3k tests
Diffstat (limited to 'test/test_func.py')
-rw-r--r-- | test/test_func.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/test_func.py b/test/test_func.py index 8fe99fe..cdfc116 100644 --- a/test/test_func.py +++ b/test/test_func.py @@ -144,12 +144,9 @@ class TestTests(testlib.TestCase): continue todo.sort() if PY3K: - rest = [# encoding errors now handled by astng: - 'E0501', 'E0502', - # ... - 'E1122', 'I0001', - # deprecated syntax removed from py3k : - 'W0122', 'W0331', 'W0332', 'W0333', + rest = ['E1122', 'I0001', + # deprecated exec statement removed from py3k : + 'W0122', # XXX : no use case for now : 'W0402', # deprecated module 'W0403', # implicit relative import |