This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients Inyeol.Lee, Jim Fasarakis-Hilliard, arigo, belopolsky, benjamin.peterson, danielsh, emptysquare, erickt, esc24, georg.brandl, glyph, gvanrossum, levkivskyi, ncoghlan, rhettinger, serhiy.storchaka
Date 2017-11-23.11:27:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511436477.22.0.213398074469.issue10544@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2017-11-23 11:27:57serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, arigo, georg.brandl, rhettinger, ncoghlan, belopolsky, benjamin.peterson, erickt, glyph, Inyeol.Lee, esc24, danielsh, emptysquare, levkivskyi, Jim Fasarakis-Hilliard
2017-11-23 11:27:57serhiy.storchakasetmessageid: <1511436477.22.0.213398074469.issue10544@psf.upfronthosting.co.za>
2017-11-23 11:27:57serhiy.storchakalinkissue10544 messages
2017-11-23 11:27:57serhiy.storchakacreate