X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3f68af9813542a5e277b7a51b316644241c372d7..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/tests/data/stub.pyi diff --git a/.vim/bundle/black/tests/data/stub.pyi b/.vim/bundle/black/tests/data/stub.pyi new file mode 100644 index 0000000..94ba852 --- /dev/null +++ b/.vim/bundle/black/tests/data/stub.pyi @@ -0,0 +1,35 @@ +X: int + +def f(): ... + +class C: + ... + +class B: + ... + +class A: + def f(self) -> int: + ... + + def g(self) -> str: ... + +def g(): + ... + +def h(): ... + +# output +X: int + +def f(): ... + +class C: ... +class B: ... + +class A: + def f(self) -> int: ... + def g(self) -> str: ... + +def g(): ... +def h(): ...