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:37:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511437055.06.0.213398074469.issue10544@psf.upfronthosting.co.za>
In-reply-to
Content
This is straightforward.

__result = []; __i = None
try:
    for __i in range(2, 5):
        __result2 = []; __x = __y = None
        try:
            for __x in range(2):
                for __y in range(1, __i):
                    __result2.append(__x + __y)
            __result.append(__result2)
        finally:
            del __result2, __x, __y
finally:
    del __i
History
Date User Action Args
2017-11-23 11:37:35serhiy.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:37:35serhiy.storchakasetmessageid: <1511437055.06.0.213398074469.issue10544@psf.upfronthosting.co.za>
2017-11-23 11:37:35serhiy.storchakalinkissue10544 messages
2017-11-23 11:37:35serhiy.storchakacreate