X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b:/tests/data/pep_572_py39.py..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/tests/data/static/git-logo.png?ds=sidebyside diff --git a/tests/data/pep_572_py39.py b/tests/data/pep_572_py39.py deleted file mode 100644 index 7bbd509..0000000 --- a/tests/data/pep_572_py39.py +++ /dev/null @@ -1,7 +0,0 @@ -# Unparenthesized walruses are now allowed in set literals & set comprehensions -# since Python 3.9 -{x := 1, 2, 3} -{x4 := x ** 5 for x in range(7)} -# We better not remove the parentheses here (since it's a 3.10 feature) -x[(a := 1)] -x[(a := 1), (b := 3)]