diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-01 22:53:15 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-01 22:53:15 (GMT) |
commit | 0072d5aa33eb84cb17e63d4dee255e1d1262f52e (patch) | |
tree | d80c42c3a7ae9cb8a7fa422c58e160287f12651f /Misc | |
parent | 3faa52ecc4aeb30f8913b4dd105184f6f7bc733d (diff) | |
download | cpython-0072d5aa33eb84cb17e63d4dee255e1d1262f52e.zip cpython-0072d5aa33eb84cb17e63d4dee255e1d1262f52e.tar.gz cpython-0072d5aa33eb84cb17e63d4dee255e1d1262f52e.tar.bz2 |
continue now allowed in try block
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |