X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/133609463459b2b6a98f08bcf41a07f6b14ab747..7b11f04d54d6da117ed5e640fd9420727f07ef81:/black.py diff --git a/black.py b/black.py index b8736e7..0776983 100644 --- a/black.py +++ b/black.py @@ -12,7 +12,7 @@ from multiprocessing import Manager, freeze_support import os from pathlib import Path import pickle -import re +import regex as re import signal import sys import tempfile @@ -1341,19 +1341,15 @@ class Line: # only report an unsplittable 'type: ignore' if this line was # one line in the original code. - # Like in the type comment check above, we need to skip a black added - # trailing comma or invisible paren, since it will be the original leaf - # before it that has the original line number. - last_idx = -1 - last_leaf = self.leaves[-1] - if len(self.leaves) > 2 and ( - last_leaf.type == token.COMMA - or (last_leaf.type == token.RPAR and not last_leaf.value) - ): - last_idx = -2 + # Grab the first and last line numbers, skipping generated leaves + first_line = next((l.lineno for l in self.leaves if l.lineno != 0), 0) + last_line = next((l.lineno for l in reversed(self.leaves) if l.lineno != 0), 0) - if self.leaves[0].lineno == self.leaves[last_idx].lineno: - for node in self.leaves[last_idx:]: + if first_line == last_line: + # We look at the last two leaves since a comma or an + # invisible paren could have been added at the end of the + # line. + for node in self.leaves[-2:]: for comment in self.comments.get(id(node), []): if is_type_comment(comment, " ignore"): return True @@ -3810,7 +3806,8 @@ def re_compile_maybe_verbose(regex: str) -> Pattern[str]: """ if "\n" in regex: regex = "(?x)" + regex - return re.compile(regex) + compiled: Pattern[str] = re.compile(regex) + return compiled def enumerate_reversed(sequence: Sequence[T]) -> Iterator[Tuple[Index, T]]: