summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-11-10 18:27:23 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-11-10 18:27:23 +0100
commit382052308669553e211a4beae0137429e90a51f8 (patch)
treefd7824c9bb66b2ce223219609bde6130616c3272 /test
parent7b695458cdd9c55e490e13e28fa7000096ffd6e8 (diff)
downloadpylint-382052308669553e211a4beae0137429e90a51f8.tar.gz
cleanup: remove python < 2.5 support
Diffstat (limited to 'test')
-rw-r--r--test/smoketest.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/smoketest.py b/test/smoketest.py
index 5b0e511..486704d 100644
--- a/test/smoketest.py
+++ b/test/smoketest.py
@@ -29,8 +29,6 @@ class RunTC(TestCase):
def _runtest(self, args, reporter=None, out=None, code=28):
if out is None:
out = StringIO()
- if sys.version_info < (2, 5) and 'pylint.lint' in args:
- code = 30
try:
sys.stderr = sys.stdout = out
try: