diff options
author | Georg Brandl <georg@python.org> | 2005-12-17 21:45:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-17 21:45:17 (GMT) |
commit | fa16668c9b9d8140260fbd80b81f81d139adfcd6 (patch) | |
tree | ad3c7c18bd11f690a8982ee7980e0608583547f7 /Misc/NEWS | |
parent | f599f424a2c8cfc490111a11203c93d23706379f (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |