X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/data/cases/stub.py?ds=sidebyside diff --git a/.vim/bundle/black/tests/data/cases/stub.py b/.vim/bundle/black/tests/data/cases/stub.py deleted file mode 100644 index f3828d55..00000000 --- a/.vim/bundle/black/tests/data/cases/stub.py +++ /dev/null @@ -1,152 +0,0 @@ -# flags: --pyi -X: int - -def f(): ... - - -class D: - ... - - -class C: - ... - -class B: - this_lack_of_newline_should_be_kept: int - def b(self) -> None: ... - - but_this_newline_should_also_be_kept: int - -class A: - attr: int - attr2: str - - def f(self) -> int: - ... - - def g(self) -> str: ... - - - -def g(): - ... - -def h(): ... - -if sys.version_info >= (3, 8): - class E: - def f(self): ... - class F: - - def f(self): ... - class G: ... - class H: ... -else: - class I: ... - class J: ... - def f(): ... - - class K: - def f(self): ... - def f(): ... - -class Nested: - class dirty: ... - class little: ... - class secret: - def who_has_to_know(self): ... - def verse(self): ... - -class Conditional: - def f(self): ... - if sys.version_info >= (3, 8): - def g(self): ... - else: - def g(self): ... - def h(self): ... - def i(self): ... - if sys.version_info >= (3, 8): - def j(self): ... - def k(self): ... - if sys.version_info >= (3, 8): - class A: ... - class B: ... - class C: - def l(self): ... - def m(self): ... - - -# output -X: int - -def f(): ... - -class D: ... -class C: ... - -class B: - this_lack_of_newline_should_be_kept: int - def b(self) -> None: ... - - but_this_newline_should_also_be_kept: int - -class A: - attr: int - attr2: str - - def f(self) -> int: ... - def g(self) -> str: ... - -def g(): ... -def h(): ... - -if sys.version_info >= (3, 8): - class E: - def f(self): ... - - class F: - def f(self): ... - - class G: ... - class H: ... - -else: - class I: ... - class J: ... - - def f(): ... - - class K: - def f(self): ... - - def f(): ... - -class Nested: - class dirty: ... - class little: ... - - class secret: - def who_has_to_know(self): ... - - def verse(self): ... - -class Conditional: - def f(self): ... - if sys.version_info >= (3, 8): - def g(self): ... - else: - def g(self): ... - - def h(self): ... - def i(self): ... - if sys.version_info >= (3, 8): - def j(self): ... - - def k(self): ... - if sys.version_info >= (3, 8): - class A: ... - class B: ... - - class C: - def l(self): ... - def m(self): ...