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 nedbat
Recipients Mark.Shannon, nedbat
Date 2021-01-02.17:36:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609608987.33.0.949157795007.issue42803@roundup.psfhosted.org>
In-reply-to
Content
I think I am finding more examples of the same problem, so I will just add it here:

    x = "hello"
    try:
        3/0
    except ZeroDivisionError:
        if x == 'raise':
            raise ValueError()   # line 6
    f = 7

This shows a trace for line 6, which is never excecuted:

call <string> 1 @-1
    line <string> 1 @0
    line <string> 2 @4
    line <string> 3 @6
    exception <string> 3 @10
    line <string> 4 @24
    line <string> 5 @36
    line <string> 6 @50
    line <string> 7 @52
    return <string> 7 @58
History
Date User Action Args
2021-01-02 17:36:27nedbatsetrecipients: + nedbat, Mark.Shannon
2021-01-02 17:36:27nedbatsetmessageid: <1609608987.33.0.949157795007.issue42803@roundup.psfhosted.org>
2021-01-02 17:36:27nedbatlinkissue42803 messages
2021-01-02 17:36:27nedbatcreate