summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/list1.py
blob: e2a1a3e9fa2587f855d466bb94963eb79d1ec932 (plain) (blame)
1
2
3
4
5
6
7
8
x = []
x = [1]
x = [1,] # not implemented
x = [1, 2]
x = [1, 2,]
x = [1, 2, 3]
x = [1, 2, 3, 4]
x = [1, 2, 3, 4, 5]