diff options
author | Georg Brandl <georg@python.org> | 2008-05-05 21:42:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-05 21:42:51 (GMT) |
commit | e06de8b3cc279804f7f38a8002ca171094f83f55 (patch) | |
tree | e9b58dae5efa86f0c50fd0bdb68ce6354b670ceb /Doc/whatsnew | |
parent | 7694100e4b44a6dd965964af323e5e0c23ffc897 (diff) | |
download | cpython-e06de8b3cc279804f7f38a8002ca171094f83f55.zip cpython-e06de8b3cc279804f7f38a8002ca171094f83f55.tar.gz cpython-e06de8b3cc279804f7f38a8002ca171094f83f55.tar.bz2 |
#2762: remove 2.x remnants and patch up some new documentation.
Diffstat (limited to 'Doc/whatsnew')
-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.) |