This commit is contained in:
Akash Munagala
2023-02-12 16:21:46 -08:00
parent aaad868445
commit 66c46661d9
3 changed files with 9 additions and 0 deletions

Binary file not shown.

5
tests/input/test_sets.py Normal file
View File

@@ -0,0 +1,5 @@
a = set()
b = {1, 2}
c = {"AB", "CD"}
# Below uses SET_UPDATE
d = {1, 2, 3, 4}

View File

@@ -0,0 +1,4 @@
a = set ( ) <EOL>
b = { 1 , 2 } <EOL>
c = { 'AB' , 'CD' } <EOL>
d = { 2 , 1 , 3 , 4 } <EOL>