diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-02-06 08:20:32 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2021-02-07 10:28:18 +0100 |
commit | b95ec9707ceb2866344c96d300106fdd3bd60a72 (patch) | |
tree | 02f65ffe368ee0e527cff3a9a3324ac14dbdb28c /tests/test_regr.py | |
parent | f66d03b278557e5f1a2898ea65de607b97e2d1ee (diff) | |
download | pylint-git-b95ec9707ceb2866344c96d300106fdd3bd60a72.tar.gz |
Remove unused and bugged pypy_version_info
Diffstat (limited to 'tests/test_regr.py')
-rw-r--r-- | tests/test_regr.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_regr.py b/tests/test_regr.py index c7a8d56b7..1a277bd09 100644 --- a/tests/test_regr.py +++ b/tests/test_regr.py @@ -30,11 +30,6 @@ from pylint import testutils REGR_DATA = join(dirname(abspath(__file__)), "regrtest_data") sys.path.insert(1, REGR_DATA) -try: - PYPY_VERSION_INFO = sys.pypy_version_info -except AttributeError: - PYPY_VERSION_INFO = None - @pytest.fixture(scope="module") def reporter(): |