diff options
author | Georg Brandl <georg@python.org> | 2009-02-06 18:11:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-06 18:11:01 (GMT) |
commit | 0a7b2c7bc393aee46081fe566ebd3edf0e8d5073 (patch) | |
tree | e48fe9605e711cd1d66688e40763dfe1789ee473 /Doc/whatsnew/3.0.rst | |
parent | b9ebd04bbc34a31151a44c0a4c78aa4821f41136 (diff) | |
download | cpython-0a7b2c7bc393aee46081fe566ebd3edf0e8d5073.zip cpython-0a7b2c7bc393aee46081fe566ebd3edf0e8d5073.tar.gz cpython-0a7b2c7bc393aee46081fe566ebd3edf0e8d5073.tar.bz2 |
#5173: StandardError wasn't removed in 2.6.
Diffstat (limited to 'Doc/whatsnew/3.0.rst')
-rw-r--r-- | Doc/whatsnew/3.0.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst index fcdca04..82f32ca 100644 --- a/Doc/whatsnew/3.0.rst +++ b/Doc/whatsnew/3.0.rst @@ -691,7 +691,7 @@ new powerful features added: idiom for handling all exceptions except for this latter category is to use :keyword:`except` :exc:`Exception`. -* :exc:`StandardError` was removed (in 2.6 already). +* :exc:`StandardError` was removed. * Exceptions no longer behave as sequences. Use the :attr:`args` attribute instead. |