summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-12-17 21:45:17 (GMT)
committerGeorg Brandl <georg@python.org>2005-12-17 21:45:17 (GMT)
commitfa16668c9b9d8140260fbd80b81f81d139adfcd6 (patch)
treead3c7c18bd11f690a8982ee7980e0608583547f7 /Misc/NEWS
parentf599f424a2c8cfc490111a11203c93d23706379f (diff)
downloadcpython-fa16668c9b9d8140260fbd80b81f81d139adfcd6.zip
cpython-fa16668c9b9d8140260fbd80b81f81d139adfcd6.tar.gz
cpython-fa16668c9b9d8140260fbd80b81f81d139adfcd6.tar.bz2
Added PEP 341 to NEWS.
We still need a change in the reference manual to reflect the new try statement.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4581e14..3aa6519 100644
--- 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.