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 ppperry
Recipients BTaskaya, Mark.Shannon, eric.smith, lukasz.langa, pablogsal, ppperry, serhiy.storchaka, vstinner, xtreak
Date 2019-08-13.01:22:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1565659361.2.0.80597839173.issue37830@roundup.psfhosted.org>
In-reply-to
Content
Unfortunately, there's a similar bug for `break` in a finally inside two nested loops, so just re-banning `continue` won't fix the crash.
The code below segfaults:
```
def simple():
    for number in range(2):
    	for number in range(2):
        	try:
            		return number
        	finally:
            		break
simple()
```
History
Date User Action Args
2019-08-13 01:22:41ppperrysetrecipients: + ppperry, vstinner, eric.smith, lukasz.langa, Mark.Shannon, serhiy.storchaka, pablogsal, xtreak, BTaskaya
2019-08-13 01:22:41ppperrysetmessageid: <1565659361.2.0.80597839173.issue37830@roundup.psfhosted.org>
2019-08-13 01:22:41ppperrylinkissue37830 messages
2019-08-13 01:22:41ppperrycreate