diff options
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index 11b56cc..7611891 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -232,7 +232,8 @@ Exception Stuff * PEP 3109: Raising exceptions. You must now use ``raise Exception(args)`` instead of ``raise Exception, args``. -* PEP 3110: Catching exceptions. +* PEP 3110: Catching exceptions. You must now use ``except SomeException as + identifier:`` instead of ``except Exception, identifier:`` * PEP 3134: Exception chaining. (The :attr:`__context__` feature from the PEP hasn't been implemented yet in 3.0a2.) |