1# mode: run
2# ticket: 715
3# tag: genexpr, comprehension
4
5def t715(*items):
6    """
7    # Blocked by T724
8    # >>> [list(i) for i in t715([1, 2, 3], [4, 5, 6])]
9    # [[1, 2, 3], [4, 5, 6]]
10    >>> [list(i) for i in t715([1, 2, 3])]
11    [[1, 2, 3]]
12    """
13    return [(j for j in i) for i in items]
14