summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRSTdefg <34202999+RSTdefg@users.noreply.github.com>2023-04-12 07:58:35 -0400
committerGitHub <noreply@github.com>2023-04-12 13:58:35 +0200
commit0cd41b1fb15e31eb311b61f93bc27f7cacc2f7ac (patch)
tree5e7b519837b8e841deee49586d744cc672dc83b1
parent1a1452a8b2478cd748a270ef238af47d61f02141 (diff)
downloadpylint-git-0cd41b1fb15e31eb311b61f93bc27f7cacc2f7ac.tar.gz
Fix `unused-import` to check`dummy-variables-rgx` (#8566)
Resolve #8500 Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
-rw-r--r--doc/whatsnew/fragments/8500.false_positive3
-rw-r--r--pylint/checkers/variables.py15
-rw-r--r--tests/checkers/unittest_typecheck.py2
-rw-r--r--tests/functional/i/import_dummy.py5
4 files changed, 20 insertions, 5 deletions
diff --git a/doc/whatsnew/fragments/8500.false_positive b/doc/whatsnew/fragments/8500.false_positive
new file mode 100644
index 000000000..ced61766a
--- /dev/null
+++ b/doc/whatsnew/fragments/8500.false_positive
@@ -0,0 +1,3 @@
+Fixed `unused-import` so that it observes the `dummy-variables-rgx` option.
+
+Closes #8500
diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py
index 8647cc8a6..cad4c76ea 100644
--- a/pylint/checkers/variables.py
+++ b/pylint/checkers/variables.py
@@ -3055,6 +3055,13 @@ class VariablesChecker(BaseChecker):
imported_name in self._type_annotation_names
or as_name in self._type_annotation_names
)
+
+ is_dummy_import = (
+ as_name
+ and self.linter.config.dummy_variables_rgx
+ and self.linter.config.dummy_variables_rgx.match(as_name)
+ )
+
if isinstance(stmt, nodes.Import) or (
isinstance(stmt, nodes.ImportFrom) and not stmt.modname
):
@@ -3065,12 +3072,11 @@ class VariablesChecker(BaseChecker):
# because they can be imported for exporting.
continue
- if is_type_annotation_import:
+ if is_type_annotation_import or is_dummy_import:
# Most likely a typing import if it wasn't used so far.
+ # Also filter dummy variables.
continue
- if as_name == "_":
- continue
if as_name is None:
msg = f"import {imported_name}"
else:
@@ -3088,8 +3094,9 @@ class VariablesChecker(BaseChecker):
# __future__ import in another module.
continue
- if is_type_annotation_import:
+ if is_type_annotation_import or is_dummy_import:
# Most likely a typing import if it wasn't used so far.
+ # Also filter dummy variables.
continue
if imported_name == "*":
diff --git a/tests/checkers/unittest_typecheck.py b/tests/checkers/unittest_typecheck.py
index 2bef6da19..c944b863f 100644
--- a/tests/checkers/unittest_typecheck.py
+++ b/tests/checkers/unittest_typecheck.py
@@ -10,7 +10,7 @@ from pylint.interfaces import INFERENCE, UNDEFINED
from pylint.testutils import CheckerTestCase, MessageTest, set_config
try:
- from coverage import tracer as _ # pylint: disable=unused-import
+ from coverage import tracer as _
C_EXTENTIONS_AVAILABLE = True
except ImportError:
diff --git a/tests/functional/i/import_dummy.py b/tests/functional/i/import_dummy.py
new file mode 100644
index 000000000..eecfa0d8a
--- /dev/null
+++ b/tests/functional/i/import_dummy.py
@@ -0,0 +1,5 @@
+"""Testing importing module as dummy variable."""
+import gettext as _
+import sys as __
+import typing as ___dummy
+from base64 import b64encode as ____dummy