X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/715f60c11bc12d8d6ffedded90c2b9a6a1b6a287:/tests/data/simple_cases/pep_604.py..a69bda3b9bde208d5489eb2e37fc982b6bc1d8df:/tests/data/cases/static/gitweb.js diff --git a/tests/data/simple_cases/pep_604.py b/tests/data/simple_cases/pep_604.py deleted file mode 100644 index b68d59d..0000000 --- a/tests/data/simple_cases/pep_604.py +++ /dev/null @@ -1,25 +0,0 @@ -def some_very_long_name_function() -> my_module.Asdf | my_module.AnotherType | my_module.YetAnotherType | None: - pass - - -def some_very_long_name_function() -> my_module.Asdf | my_module.AnotherType | my_module.YetAnotherType | my_module.EvenMoreType | None: - pass - - -# output - - -def some_very_long_name_function() -> ( - my_module.Asdf | my_module.AnotherType | my_module.YetAnotherType | None -): - pass - - -def some_very_long_name_function() -> ( - my_module.Asdf - | my_module.AnotherType - | my_module.YetAnotherType - | my_module.EvenMoreType - | None -): - pass