Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add B015: pointless statement. #130

Merged
merged 1 commit into from
Jul 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ instead of ``except (SomeError,):``.
**B014**: Redundant exception types in ``except (Exception, TypeError):``.
Write ``except Exception:``, which catches exactly the same exceptions.

**B015**: Pointless comparison. This comparison does nothing but
wastes CPU instructions. Remove it.


Python 3 compatibility warnings
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
20 changes: 16 additions & 4 deletions bugbear.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
import ast
import builtins
import itertools
import logging
import re
from collections import namedtuple
from contextlib import suppress
from functools import lru_cache, partial
import itertools
from keyword import iskeyword
import logging
import re

import attr
import pycodestyle


__version__ = "20.1.4"

LOG = logging.getLogger("flake8.bugbear")
Expand Down Expand Up @@ -300,6 +299,9 @@ def visit_Try(self, node):
self.check_for_b012(node)
self.generic_visit(node)

def visit_Compare(self, node):
self.check_for_b015(node)

def compose_call_path(self, node):
if isinstance(node, ast.Attribute):
yield from self.compose_call_path(node.value)
Expand Down Expand Up @@ -371,6 +373,10 @@ def _loop(node, bad_node_types):
for child in node.finalbody:
_loop(child, (ast.Return, ast.Continue, ast.Break))

def check_for_b015(self, node):
if isinstance(self.node_stack[-2], ast.Expr):
self.errors.append(B015(node.lineno, node.col_offset))

def walk_function_body(self, node):
def _loop(parent, node):
if isinstance(node, (ast.AsyncFunctionDef, ast.FunctionDef)):
Expand Down Expand Up @@ -658,6 +664,12 @@ def visit(self, node):
"select.error",
}
}
B015 = Error(
message=(
"B015 Pointless comparison. This comparison does nothing but wastes "
"CPU instructions. Remove it."
)
)

# Those could be false positives but it's more dangerous to let them slip
# through if they're not.
Expand Down
29 changes: 29 additions & 0 deletions tests/b015.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"""
Should emit:
B015 - on lines 8, 12, 22, 29
"""

assert 1 == 1

1 == 1

assert 1 in (1, 2)

1 in (1, 2)


if 1 == 2:
pass


def test():
assert 1 in (1, 2)

1 in (1, 2)


data = [x for x in [1, 2, 3] if x in (1, 2)]


class TestClass:
1 == 1
8 changes: 8 additions & 0 deletions tests/test_bugbear.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
B012,
B013,
B014,
B015,
B301,
B302,
B303,
Expand Down Expand Up @@ -182,6 +183,13 @@ def test_b014(self):
)
self.assertEqual(errors, expected)

def test_b015(self):
filename = Path(__file__).absolute().parent / "b015.py"
bbc = BugBearChecker(filename=str(filename))
errors = list(bbc.run())
expected = self.errors(B015(8, 0), B015(12, 0), B015(22, 4), B015(29, 4))
self.assertEqual(errors, expected)

def test_b301_b302_b305(self):
filename = Path(__file__).absolute().parent / "b301_b302_b305.py"
bbc = BugBearChecker(filename=str(filename))
Expand Down