X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/715f60c11bc12d8d6ffedded90c2b9a6a1b6a287:/tests/data/simple_cases/ignore_pyi.py..a69bda3b9bde208d5489eb2e37fc982b6bc1d8df:/tests/data/cases/static/gitweb.js diff --git a/tests/data/simple_cases/ignore_pyi.py b/tests/data/simple_cases/ignore_pyi.py deleted file mode 100644 index 3ef6107..0000000 --- a/tests/data/simple_cases/ignore_pyi.py +++ /dev/null @@ -1,41 +0,0 @@ -def f(): # type: ignore - ... - -class x: # some comment - ... - -class y: - ... # comment - -# whitespace doesn't matter (note the next line has a trailing space and tab) -class z: - ... - -def g(): - # hi - ... - -def h(): - ... - # bye - -# output - -def f(): # type: ignore - ... - -class x: # some comment - ... - -class y: ... # comment - -# whitespace doesn't matter (note the next line has a trailing space and tab) -class z: ... - -def g(): - # hi - ... - -def h(): - ... - # bye