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 Mark.Shannon
Recipients Mark.Shannon
Date 2021-01-12.11:25:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610450720.62.0.32697426383.issue42908@roundup.psfhosted.org>
In-reply-to
Content
The following examples produce incorrect line numbers, due to cleanup code not being marked as artificial

def f():
    try:
        if False:
            pass
    except:
        X
        
def g(a):
    with a:
         if False:
             pass
History
Date User Action Args
2021-01-12 11:25:20Mark.Shannonsetrecipients: + Mark.Shannon
2021-01-12 11:25:20Mark.Shannonsetmessageid: <1610450720.62.0.32697426383.issue42908@roundup.psfhosted.org>
2021-01-12 11:25:20Mark.Shannonlinkissue42908 messages
2021-01-12 11:25:20Mark.Shannoncreate