[Patches] [ python-Patches-1542451 ] fix crash with continue in nested try/finally
SourceForge.net
noreply at sourceforge.net
Sat Aug 19 10:04:09 CEST 2006
Patches item #1542451, was opened at 2006-08-18 07:27
Message generated for change (Comment added) made by arigo
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1542451&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Parser/Compiler
Group: None
Status: Open
Resolution: None
Priority: 8
Submitted By: Neal Norwitz (nnorwitz)
Assigned to: Nobody/Anonymous (nobody)
Summary: fix crash with continue in nested try/finally
Initial Comment:
Based on mail from python-dev.
http://mail.python.org/pipermail/python-dev/2006-August/068306.html
def test():
for abc in range(10):
try: pass
finally:
try:
continue
except:
pass
crashes.
----------------------------------------------------------------------
>Comment By: Armin Rigo (arigo)
Date: 2006-08-19 08:04
Message:
Logged In: YES
user_id=4771
My two cents are a meta-note: I think that this should not go
into 2.5.0. It fixes a bug with syntactically invalid
code, which nobody stumbled upon until recently although
it has been here for ages, and there is a (small) risk to
break syntactically valid code.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1542451&group_id=5470
More information about the Patches
mailing list