From 3f161734efebd80c2e89b7f8b59989a9490b8adc Mon Sep 17 00:00:00 2001 From: George Date: Tue, 9 May 2023 14:41:15 +0100 Subject: [PATCH] (3.8) Remove outdated sys.version_info checks (#375) Co-authored-by: Cooper Lees --- bugbear.py | 5 ----- tests/test_bugbear.py | 20 +++++++------------- 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/bugbear.py b/bugbear.py index 849971e..c108931 100644 --- a/bugbear.py +++ b/bugbear.py @@ -1216,11 +1216,6 @@ def check_for_b906(self, node: ast.FunctionDef): self.errors.append(B906(node.lineno, node.col_offset)) def check_for_b907(self, node: ast.JoinedStr): # noqa: C901 - # AST structure of strings in f-strings in 3.7 is different enough this - # implementation doesn't work - if sys.version_info <= (3, 7): - return # pragma: no cover - def myunparse(node: ast.AST) -> str: # pragma: no cover if sys.version_info >= (3, 9): return ast.unparse(node) diff --git a/tests/test_bugbear.py b/tests/test_bugbear.py index 09e8d29..045f88d 100644 --- a/tests/test_bugbear.py +++ b/tests/test_bugbear.py @@ -121,7 +121,7 @@ def test_b006_b008(self): B006(72, 19), B006(76, 31), B006(80, 25), - B006(85, 45 if sys.version_info >= (3, 8) else 46), + B006(85, 45), B008(85, 60), B006(89, 45), B008(89, 63), @@ -131,7 +131,7 @@ def test_b006_b008(self): B008(109, 38), B008(113, 11), B008(113, 31), - B008(117, 29 if sys.version_info >= (3, 8) else 30), + B008(117, 29), B008(160, 29), B008(164, 44), B006(170, 19), @@ -294,20 +294,17 @@ def test_b019(self): filename = Path(__file__).absolute().parent / "b019.py" bbc = BugBearChecker(filename=str(filename)) errors = list(bbc.run()) - - # AST Decorator column location for callable decorators changes in 3.7 - col = 5 if sys.version_info >= (3, 7) else 4 self.assertEqual( errors, self.errors( B019(73, 5), B019(77, 5), - B019(81, col), - B019(85, col), + B019(81, 5), + B019(85, 5), B019(89, 5), B019(93, 5), - B019(97, col), - B019(101, col), + B019(97, 5), + B019(101, 5), ), ) @@ -431,7 +428,7 @@ def test_b027(self): B027(16, 4, vars=("empty_2",)), B027(19, 4, vars=("empty_3",)), B027(23, 4, vars=("empty_4",)), - B027(31 if sys.version_info >= (3, 8) else 30, 4, vars=("empty_5",)), + B027(31, 4, vars=("empty_5",)), ) self.assertEqual(errors, expected) @@ -505,7 +502,6 @@ def test_b908(self): ) self.assertEqual(errors, expected) - @unittest.skipIf(sys.version_info < (3, 8), "not implemented for <3.8") def test_b907(self): filename = Path(__file__).absolute().parent / "b907.py" bbc = BugBearChecker(filename=str(filename)) @@ -553,7 +549,6 @@ def test_b907(self): # manual permutations to save overhead when doing >60k permutations # see format spec at # https://docs.python.org/3/library/string.html#format-specification-mini-language - @unittest.skipIf(sys.version_info < (3, 8), "not implemented for <3.8") def test_b907_format_specifier_permutations(self): visitor = BugBearVisitor(filename="", lines="") @@ -631,7 +626,6 @@ def test_b902(self): ), ) - @unittest.skipIf(sys.version_info < (3, 8), "requires 3.8+") def test_b902_py38(self): filename = Path(__file__).absolute().parent / "b902_py38.py" bbc = BugBearChecker(filename=str(filename))