]> granicus.if.org Git - python/commitdiff
Added PEP 341 to NEWS.
authorGeorg Brandl <georg@python.org>
Sat, 17 Dec 2005 21:45:17 +0000 (21:45 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 17 Dec 2005 21:45:17 +0000 (21:45 +0000)
We still need a change in the reference manual to reflect the
new try statement.

Misc/NEWS

index 4581e148e1d4ec1c11c46eff81eb35858f653df2..3aa65191bd12f21cf6f28a822b3221cf6f9d24b1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.5 alpha 1?
 Core and builtins
 -----------------
 
+- Implementation of PEP 341 - Unification of try/except and try/finally.
+  "except" clauses can now be written together with a "finally" clause in
+  the one try statement instead of two nested ones.
+
 - Bug #1379994: Builtin unicode_escape and raw_unicode_escape codec
   now encodes backslash correctly.