summaryrefslogtreecommitdiff
path: root/pylint/test/unittest_checker_typecheck.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/unittest_checker_typecheck.py')
-rw-r--r--pylint/test/unittest_checker_typecheck.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pylint/test/unittest_checker_typecheck.py b/pylint/test/unittest_checker_typecheck.py
index b89a81b..0aaa8a5 100644
--- a/pylint/test/unittest_checker_typecheck.py
+++ b/pylint/test/unittest_checker_typecheck.py
@@ -1,19 +1,11 @@
"""Unittest for the type checker."""
import unittest
-import sys
from astroid import test_utils
from pylint.checkers import typecheck
from pylint.testutils import CheckerTestCase, Message, set_config
-def python33_and_newer(test):
- """
- Decorator for any tests that will fail if launched not with Python 3.3+.
- """
- return unittest.skipIf(sys.version_info < (3, 3),
- 'Python 3.2 and older')(test)
-
class TypeCheckerTest(CheckerTestCase):
"Tests for pylint.checkers.typecheck"
CHECKER_CLASS = typecheck.TypeChecker