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 Иван Косматых
Recipients serhiy.storchaka, Иван Косматых
Date 2019-08-30.10:58:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567162726.95.0.517092408058.issue37987@roundup.psfhosted.org>
In-reply-to
Content
https://bugs.python.org/issue32489
This closed issue allow continue in finally clasue but now it can lead to crash in below case.

def crash():
    for i in [1, 2, 3]:
        try:
            return i
        finally:
            continue


crash()

I try use Python 3.8.0b3 (default, Aug  1 2019, 21:20:41) on ubuntu Linux 4.15.0-55-generic #60~16.04.2-Ubuntu SMP Thu Jul 4 09:03:09 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
History
Date User Action Args
2019-08-30 10:58:46Иван Косматыхsetrecipients: + Иван Косматых, serhiy.storchaka
2019-08-30 10:58:46Иван Косматыхsetmessageid: <1567162726.95.0.517092408058.issue37987@roundup.psfhosted.org>
2019-08-30 10:58:46Иван Косматыхlinkissue37987 messages
2019-08-30 10:58:46Иван Косматыхcreate