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.