Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
ambv committed Apr 19, 2018
1 parent c984042 commit 2446941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 34 deletions.
35 changes: 3 additions & 32 deletions black.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def any_open_brackets(self) -> bool:
def max_delimiter_priority(self, exclude: Iterable[LeafID] = ()) -> int:
"""Return the highest priority of a delimiter found on the line.
Values are consistent with what `is_delimiter()` returns.
Values are consistent with what `is_split_*_delimiter()` return.
Raises ValueError on no delimiters.
"""
return max(v for k, v in self.delimiters.items() if k not in exclude)
Expand Down Expand Up @@ -1352,17 +1352,11 @@ def whitespace(leaf: Leaf) -> str: # noqa C901

if p.type in {syms.parameters, syms.arglist}:
# untyped function signatures or calls
if t == token.RPAR:
return NO

if not prev or prev.type != token.COMMA:
return NO

elif p.type == syms.varargslist:
# lambdas
if t == token.RPAR:
return NO

if prev and prev.type != token.COMMA:
return NO

Expand Down Expand Up @@ -1456,21 +1450,9 @@ def whitespace(leaf: Leaf) -> str: # noqa C901
# dots, but not the first one.
return NO

elif (
p.type == syms.listmaker
or p.type == syms.testlist_gexp
or p.type == syms.subscriptlist
):
# list interior, including unpacking
if not prev:
return NO

elif p.type == syms.dictsetmaker:
# dict and set interior, including unpacking
if not prev:
return NO

if prev.type == token.DOUBLESTAR:
# dict unpacking
if prev and prev.type == token.DOUBLESTAR:
return NO

elif p.type in {syms.factor, syms.star_expr}:
Expand Down Expand Up @@ -1596,17 +1578,6 @@ def is_split_before_delimiter(leaf: Leaf, previous: Leaf = None) -> int:
return 0


def is_delimiter(leaf: Leaf, previous: Leaf = None) -> int:
"""Return the priority of the `leaf` delimiter. Return 0 if not delimiter.
Higher numbers are higher priority.
"""
return max(
is_split_before_delimiter(leaf, previous),
is_split_after_delimiter(leaf, previous),
)


def generate_comments(leaf: Leaf) -> Iterator[Leaf]:
"""Clean the prefix of the `leaf` and generate comments from it, if any.
Expand Down
2 changes: 0 additions & 2 deletions docs/reference/reference_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ Assertions and checks

.. autofunction:: black.is_split_before_delimiter

.. autofunction:: black.is_delimiter

.. autofunction:: black.is_empty_tuple

.. autofunction:: black.is_import
Expand Down

0 comments on commit 2446941

Please sign in to comment.