summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/tuple2.py
blob: df11e74ce09788ceb21121c8e280604164752f9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
x = t
x, = t
x, y = t
x, y, = t
x, y, z = t
x, y, z, = t
x, y, z, z = a, b, c, d

(x) = t
(x,) = t
(x, y) = t
(x, y,) = t
(x, y, z) = t
(x, y, z,) = t
(x, y, z, z) = a, b, c, d