X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/pep_572_do_not_remove_parens.py..HEAD:/.vim/bundle/black/tests/data/cases/pep_572_do_not_remove_parens.py diff --git a/.vim/bundle/black/tests/data/pep_572_do_not_remove_parens.py b/.vim/bundle/black/tests/data/cases/pep_572_do_not_remove_parens.py similarity index 89% rename from .vim/bundle/black/tests/data/pep_572_do_not_remove_parens.py rename to .vim/bundle/black/tests/data/cases/pep_572_do_not_remove_parens.py index 20e80a6..08dba3f 100644 --- a/.vim/bundle/black/tests/data/pep_572_do_not_remove_parens.py +++ b/.vim/bundle/black/tests/data/cases/pep_572_do_not_remove_parens.py @@ -1,3 +1,4 @@ +# flags: --fast # Most of the following examples are really dumb, some of them aren't even accepted by Python, # we're fixing them only so fuzzers (which follow the grammar which actually allows these # examples matter of fact!) don't yell at us :p @@ -19,3 +20,7 @@ with (y := [3, 2, 1]) as (funfunfun := indeed): @(please := stop) def sigh(): pass + + +for (x := 3, y := 4) in y: + pass