]>
git.madduck.net Git - etc/vim.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
20f74c2 )
"""
Exit if there is no `src` provided for formatting
"""
"""
Exit if there is no `src` provided for formatting
"""
- if len(src) == 0:
- if verbose or not quiet:
- out(msg)
- ctx.exit(0)
+ if not src and (verbose or not quiet):
+ out(msg)
+ ctx.exit(0)
valid by calling :func:`assert_equivalent` and :func:`assert_stable` on it.
`mode` is passed to :func:`format_str`.
"""
valid by calling :func:`assert_equivalent` and :func:`assert_stable` on it.
`mode` is passed to :func:`format_str`.
"""
- if src_contents.strip() == "" :
+ if not src_contents.strip() :
raise NothingChanged
dst_contents = format_str(src_contents, mode=mode)
raise NothingChanged
dst_contents = format_str(src_contents, mode=mode)
def lib2to3_parse(src_txt: str, target_versions: Iterable[TargetVersion] = ()) -> Node:
"""Given a string with source, return the lib2to3 Node."""
def lib2to3_parse(src_txt: str, target_versions: Iterable[TargetVersion] = ()) -> Node:
"""Given a string with source, return the lib2to3 Node."""
- if src_txt[-1:] != "\n" :
+ if not src_txt.endswith("\n") :
src_txt += "\n"
for grammar in get_grammars(set(target_versions)):
src_txt += "\n"
for grammar in get_grammars(set(target_versions)):
def contains_standalone_comments(self, depth_limit: int = sys.maxsize) -> bool:
"""If so, needs to be split before emitting."""
def contains_standalone_comments(self, depth_limit: int = sys.maxsize) -> bool:
"""If so, needs to be split before emitting."""
- for leaf in self.leaves:
- if leaf.type == STANDALONE_COMMENT and leaf.bracket_depth <= depth_limit:
- return True
-
- return False
+ return any(
+ leaf.type == STANDALONE_COMMENT and leaf.bracket_depth <= depth_limit
+ for leaf in self.leaves
+ )
def contains_uncollapsable_type_comments(self) -> bool:
ignored_ids = set()
def contains_uncollapsable_type_comments(self) -> bool:
ignored_ids = set()
def do_splitter_match(self, line: Line) -> TMatchResult:
LL = line.leaves
def do_splitter_match(self, line: Line) -> TMatchResult:
LL = line.leaves
- string_idx = None
- string_idx = string_idx or self._return_match(LL)
- string_idx = string_idx or self._else_match(LL)
- string_idx = string_idx or self._assert_match(LL)
- string_idx = string_idx or self._assign_match(LL)
- string_idx = string_idx or self._dict_match(LL)
+ string_idx = (
+ self._return_match(LL)
+ or self._else_match(LL)
+ or self._assert_match(LL)
+ or self._assign_match(LL)
+ or self._dict_match(LL)
+ )
if string_idx is not None:
string_value = line.leaves[string_idx].value
if string_idx is not None:
string_value = line.leaves[string_idx].value
is_valid_index = is_valid_index_factory(LL)
insert_str_child = insert_str_child_factory(LL[string_idx])
is_valid_index = is_valid_index_factory(LL)
insert_str_child = insert_str_child_factory(LL[string_idx])
- comma_idx = len(LL) - 1
ends_with_comma = False
if LL[comma_idx].type == token.COMMA:
ends_with_comma = True
ends_with_comma = False
if LL[comma_idx].type == token.COMMA:
ends_with_comma = True
of the more common static analysis tools for python (e.g. mypy, flake8,
pylint).
"""
of the more common static analysis tools for python (e.g. mypy, flake8,
pylint).
"""
- for comment in comment_list:
- if comment.value.startswith(("# type:", "# noqa", "# pylint:")):
- return True
-
- return False
+ return any(
+ comment.value.startswith(("# type:", "# noqa", "# pylint:"))
+ for comment in comment_list
+ )
def insert_str_child_factory(string_leaf: Leaf) -> Callable[[LN], None]:
def insert_str_child_factory(string_leaf: Leaf) -> Callable[[LN], None]: