commit | a5fe3ef8d835d8dffe42b58398d101eb42b897af | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Oct 08 07:12:23 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Oct 08 07:12:23 2006 +0000 |
tree | 943f16877663a74e8c2dd623460ebeb6ee9d9fc4 | |
parent | 74284b9606b4c2743ef82119b41eb3a74dd5b2d2 [diff] [blame] |
Fix #1569998: no break inside try statement (outside loop) allowed. (backport from rev. 52129)
diff --git a/Misc/NEWS b/Misc/NEWS index 9bccc28..a390730c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and builtins ----------------- +- Bug #1569998: break inside a try statement (outside a loop) is now + recognized and rejected. + - Patch #1542451: disallow continue anywhere under a finally. - list.pop(x) accepts any object x following the __index__ protocol.