X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785..d1aee5f7fa136b1f0a7d8dfc318af81009074070:/.vim/bundle/black/tests/data/cases/trailing_comma_optional_parens2.py diff --git a/.vim/bundle/black/tests/data/cases/trailing_comma_optional_parens2.py b/.vim/bundle/black/tests/data/cases/trailing_comma_optional_parens2.py new file mode 100644 index 0000000..9541670 --- /dev/null +++ b/.vim/bundle/black/tests/data/cases/trailing_comma_optional_parens2.py @@ -0,0 +1,12 @@ +if (e123456.get_tk_patchlevel() >= (8, 6, 0, 'final') or + (8, 5, 8) <= get_tk_patchlevel() < (8, 6)): + pass + +# output + +if e123456.get_tk_patchlevel() >= (8, 6, 0, "final") or ( + 8, + 5, + 8, +) <= get_tk_patchlevel() < (8, 6): + pass