From 15f2a4013e8d7ec953f219c7cedfb1b0223a83c8 Mon Sep 17 00:00:00 2001 From: John Richards Date: Thu, 7 Oct 2021 02:02:00 -0400 Subject: [PATCH] Adds an extra test case --- tests/compiled/list_extend.3.9.pyc | Bin 273 -> 312 bytes tests/input/list_extend.py | 1 + tests/tokenized/list_extend.txt | 1 + 3 files changed, 2 insertions(+) diff --git a/tests/compiled/list_extend.3.9.pyc b/tests/compiled/list_extend.3.9.pyc index 19fcbe6f902b6a42ce3b0186aced1dd8a75777c8..87e8208ee8721de5f15dc941473b013846f362a7 100644 GIT binary patch delta 174 zcmbQpw1Y`Ik(ZZ?0SM;z#3l9v>Bk@rGGGC69DumkYofNXObS~HdkRMiXF5|la};|z zLkia-#wdmqmS6@=?uj{0PDPABrA162f*DA>1nJgf_Ve@8iSmF5ULbLcG36Fx o>Mh2!Ta4+q7&BHf6p4VOL?+%;6A=KiI2b{Y4G1|HSs3{k0VIGOhyVZp delta 135 zcmdnNG?7U=k(ZZ?0SG2{#U<7N>Bk@rGGGF79DumkW}>z+Uphky+aks&h7^`y22J*f zRZiNP%zl1;n(Rf~Ks7}?Ac7Z2++s|*#h7}FG3^#(`bvf(A&|Jx#D8i+d_WclBM7nq JAqOK1BLEv@7S{j( diff --git a/tests/input/list_extend.py b/tests/input/list_extend.py index 416a3c7..3d3ebcc 100644 --- a/tests/input/list_extend.py +++ b/tests/input/list_extend.py @@ -5,4 +5,5 @@ d = [None] e = [('a', 'b', 'c')] f = [a, b] g = [] +h = [1, 2, [3, 4]] a = [None, None, None] diff --git a/tests/tokenized/list_extend.txt b/tests/tokenized/list_extend.txt index 9bb99d4..8d626ae 100644 --- a/tests/tokenized/list_extend.txt +++ b/tests/tokenized/list_extend.txt @@ -5,4 +5,5 @@ d = [ None ] e = [ ( 'a' , 'b' , 'c' ) ] f = [ a , b ] g = [ ] +h = [ 1 , 2 , [ 3 , 4 ] ] a = [ None , None , None ]