Add test
This commit is contained in:
BIN
tests/compiled/test_sets.3.10.pyc
Normal file
BIN
tests/compiled/test_sets.3.10.pyc
Normal file
Binary file not shown.
5
tests/input/test_sets.py
Normal file
5
tests/input/test_sets.py
Normal file
@@ -0,0 +1,5 @@
|
||||
a = set()
|
||||
b = {1, 2}
|
||||
c = {"AB", "CD"}
|
||||
# Below uses SET_UPDATE
|
||||
d = {1, 2, 3, 4}
|
4
tests/tokenized/test_sets.txt
Normal file
4
tests/tokenized/test_sets.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
a = set ( ) <EOL>
|
||||
b = { 1 , 2 } <EOL>
|
||||
c = { 'AB' , 'CD' } <EOL>
|
||||
d = { 2 , 1 , 3 , 4 } <EOL>
|
Reference in New Issue
Block a user