Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

I see nothing special in `[[x for x in range(1, i)] for i in range(2, 5)]`. 
This should be equivalent to:

__result = []; __i = None
try:
    for __i in range(2, 5):
        __result2 = []; __x = None
        try:
            for __x in range(1, __i)
                __result2.append(__x)
            __result.append(__result2)
        finally:
            del __result2, __x
finally:
    del __i

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue10544>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to