X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/comments2.py..HEAD:/.vim/bundle/black/tests/data/cases/comments2.py diff --git a/.vim/bundle/black/tests/data/comments2.py b/.vim/bundle/black/tests/data/cases/comments2.py similarity index 98% rename from .vim/bundle/black/tests/data/comments2.py rename to .vim/bundle/black/tests/data/cases/comments2.py index 4eea013..1487dc4 100644 --- a/.vim/bundle/black/tests/data/comments2.py +++ b/.vim/bundle/black/tests/data/cases/comments2.py @@ -154,6 +154,9 @@ class Test: not parsed.hostname.strip()): pass + +a = "type comment with trailing space" # type: str + ####################### ### SECTION COMMENT ### ####################### @@ -226,6 +229,7 @@ else: add_compiler(compilers[(7.0, 32)]) # add_compiler(compilers[(7.1, 64)]) + # Comment before function. def inline_comments_in_brackets_ruin_everything(): if typedargslist: @@ -331,6 +335,8 @@ class Test: pass +a = "type comment with trailing space" # type: str + ####################### ### SECTION COMMENT ### #######################