differentmatt / filbert

JavaScript parser of Python
Other
133 stars 27 forks source link

For statement init nested tuples #19

Closed differentmatt closed 10 years ago

differentmatt commented 10 years ago

We don't support this currently:

for ((i,j),k) in [[[1,2],5], [[3,4],6]]: print(i, j, k)
(1, 2, 5)
(3, 4, 6)
for ((i,i),i) in [[[1,2],5], [[3,4],6]]: print(i)
5
6