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 Demur Rumed, dino.viehland, serhiy.storchaka
Date 2016-05-29.19:17:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464549461.09.0.914018079235.issue27127@psf.upfronthosting.co.za>
In-reply-to
Content
Interesting.

How it works with continue?

    for x in a:
        if x: continue
        f()

In this case we can use new FOR_ITER instead of JUMP_ABSOLUTE. I would rename FOR_ITER to something more appropriate (maybe containing NEXT or CONTINUE).

How it works with continue in the try block?

    for x in a:
        try:
            if x: continue
            f()
        except Error:
            e()
History
Date User Action Args
2016-05-29 19:17:41serhiy.storchakasetrecipients: + serhiy.storchaka, dino.viehland, Demur Rumed
2016-05-29 19:17:41serhiy.storchakasetmessageid: <1464549461.09.0.914018079235.issue27127@psf.upfronthosting.co.za>
2016-05-29 19:17:41serhiy.storchakalinkissue27127 messages
2016-05-29 19:17:40serhiy.storchakacreate