[issue471928] global made w/nested list comprehensions

2022-04-10 Thread admin
Change by admin : -- github: None -> 35341 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue406867] nested list comprehensions crash

2022-04-10 Thread admin
Change by admin : -- github: None -> 34118 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue406076] fix for nested list comprehensions (#406049)

2022-04-10 Thread admin
Change by admin : -- github: None -> 34069 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Nested list comprehensions

2005-11-26 Thread neildunn
Hey guys: [(i,j,k) for i in range(1,j) for j in range(1,k) for k in range(1,5)] [(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4), (1, 2, 1), (1, 2, 2), (1, 2, 3), (1, 2, 4), (1, 3, 1), (1, 3, 2), (1, 3, 3), (1, 3, 4), (2, 1, 1), (2, 1, 2), (2, 1, 3), (2, 1, 4), (2, 2, 1), (2, 2, 2), (2, 2, 3), (2, 2,

Re: Nested list comprehensions

2005-11-26 Thread Carl Waldbieser
[EMAIL PROTECTED] wrote: Hey guys: [(i,j,k) for i in range(1,j) for j in range(1,k) for k in range(1,5)] [(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4), (1, 2, 1), (1, 2, 2), (1, 2, 3), (1, 2, 4), (1, 3, 1), (1, 3, 2), (1, 3, 3), (1, 3, 4), (2, 1, 1), (2, 1, 2), (2, 1, 3), (2, 1, 4), (2, 2,

Re: Nested list comprehensions

2005-11-26 Thread Mike Meyer
[EMAIL PROTECTED] writes: Hey guys: [(i,j,k) for i in range(1,j) for j in range(1,k) for k in range(1,5)] [(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4), (1, 2, 1), (1, 2, 2), (1, 2, 3), (1, 2, 4), (1, 3, 1), (1, 3, 2), (1, 3, 3), (1, 3, 4), (2, 1, 1), (2, 1, 2), (2, 1, 3), (2, 1, 4), (2, 2,