During I add a test for #40. I found that this syntax does not work as I expected. ```python a = range(100, 0, -1) len(a) <- 100 b = [a for e in a] len(b) <- should be 100 but 0 in gpython ```