From 66c46661d91db301459bffc1e3e4500c348c5e5f Mon Sep 17 00:00:00 2001 From: Akash Munagala Date: Sun, 12 Feb 2023 16:21:46 -0800 Subject: [PATCH] Add test --- tests/compiled/test_sets.3.10.pyc | Bin 0 -> 198 bytes tests/input/test_sets.py | 5 +++++ tests/tokenized/test_sets.txt | 4 ++++ 3 files changed, 9 insertions(+) create mode 100644 tests/compiled/test_sets.3.10.pyc create mode 100644 tests/input/test_sets.py create mode 100644 tests/tokenized/test_sets.txt diff --git a/tests/compiled/test_sets.3.10.pyc b/tests/compiled/test_sets.3.10.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0562b4e61a4fb40862f8af52bbbd3c6a58e080ef GIT binary patch literal 198 zcmd1j<>g`kf}rk~$ss`cF^GcivMF*&=~u>d(mAmJjA@JnV80TT1mWWB{)oLX{= zG4U2-(k;g1TZ}0y8H#v7DnZ0Ao|4q!l6atsV!eXOTO2mI`6;D2sdgZviaCG;8v_R; I2O|#?0D+MwMgRZ+ literal 0 HcmV?d00001 diff --git a/tests/input/test_sets.py b/tests/input/test_sets.py new file mode 100644 index 0000000..93f493a --- /dev/null +++ b/tests/input/test_sets.py @@ -0,0 +1,5 @@ +a = set() +b = {1, 2} +c = {"AB", "CD"} +# Below uses SET_UPDATE +d = {1, 2, 3, 4} diff --git a/tests/tokenized/test_sets.txt b/tests/tokenized/test_sets.txt new file mode 100644 index 0000000..c939d7d --- /dev/null +++ b/tests/tokenized/test_sets.txt @@ -0,0 +1,4 @@ +a = set ( ) +b = { 1 , 2 } +c = { 'AB' , 'CD' } +d = { 2 , 1 , 3 , 4 }