Adds support for LIST_EXTEND opcode

Addresses #199
This commit is contained in:
John Richards
2021-10-07 01:51:53 -04:00
parent 6140b4b33e
commit a504452b7b
4 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
a = [ 1 , 2 , 3 ] <EOL>
b = [ '4' , 5 , 6 ] <EOL>
c = [ 7 , ( 8 , 9 , 10 ) ] <EOL>
d = [ None ] <EOL>
e = [ ( 'a' , 'b' , 'c' ) ] <EOL>
f = [ a , b ] <EOL>
g = [ ] <EOL>
a = [ None , None , None ] <EOL>