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 pitrou
Recipients Demur Rumed, Mark.Shannon, benjamin.peterson, christian.heimes, mark.dickinson, nascheme, pitrou, rhettinger, serhiy.storchaka, trent, vstinner
Date 2017-07-24.08:25:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1500884751.71.0.69853214173.issue17611@psf.upfronthosting.co.za>
In-reply-to
Content
For example we could generate the following bytecode:

    SETUP_FINALLY L1
    // ... stmt1
    POP_BLOCK
    JUMP_FINALLY  L1
L1:
    // ... stmt2
    RERAISE
    JUMP_FORWARD  L2
L2:


JUMP_FINALLY would push 3 Nones on the stack.  RERAISE would raise only if non-None values are popped.
History
Date User Action Args
2017-07-24 08:25:51pitrousetrecipients: + pitrou, nascheme, rhettinger, mark.dickinson, vstinner, christian.heimes, benjamin.peterson, trent, Mark.Shannon, serhiy.storchaka, Demur Rumed
2017-07-24 08:25:51pitrousetmessageid: <1500884751.71.0.69853214173.issue17611@psf.upfronthosting.co.za>
2017-07-24 08:25:51pitroulinkissue17611 messages
2017-07-24 08:25:51pitroucreate