From: Jeremy Hylton Date: Thu, 1 Feb 2001 22:53:15 +0000 (+0000) Subject: continue now allowed in try block X-Git-Tag: v2.1a2~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0072d5aa33eb84cb17e63d4dee255e1d1262f52e;p=thirdparty%2FPython%2Fcpython.git continue now allowed in try block --- diff --git a/Misc/NEWS b/Misc/NEWS index beb3a922606f..4f6ee694d0ee 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -58,6 +58,10 @@ Core language, builtins, and interpreter includes support for "explicit" weak references, proxy objects, and mappings with weakly held values. +- A 'continue' statement can now appear in a try block within the body + of a loop. It is still not possible to use continue in a finally + clause. + Standard library - mailbox.py now has a new class, PortableUnixMailbox which is