From 4764b49186d6daf4f7690fb66f851dc4a1d231e9 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Fri, 30 Oct 2020 23:11:59 +0100 Subject: [PATCH] Move testutils.py in its own package --- pylint/{testutils.py => testutils/__init__.py} | 2 -- 1 file changed, 2 deletions(-) rename pylint/{testutils.py => testutils/__init__.py} (99%) diff --git a/pylint/testutils.py b/pylint/testutils/__init__.py similarity index 99% rename from pylint/testutils.py rename to pylint/testutils/__init__.py index 6f0f2168a..a248ac558 100644 --- a/pylint/testutils.py +++ b/pylint/testutils/__init__.py @@ -52,8 +52,6 @@ from pylint.lint import PyLinter from pylint.reporters import BaseReporter from pylint.utils import ASTWalker -# Utils - SYS_VERS_STR = "%d%d%d" % sys.version_info[:3] TITLE_UNDERLINES = ["", "=", "-", "."] PREFIX = abspath(dirname(__file__))