Skip to content
Commit f2428476 authored by Sven Brauch's avatar Sven Brauch
Browse files

Support iterating over lists of tuples while unpacking those.

Code example:
c = [(1, 2)]
for a, b in c: print a, b # a, b are ints

should fix
BUG:305834
parent 233a419c
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment