summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-06 18:11:01 (GMT)
committerGeorg Brandl <georg@python.org>2009-02-06 18:11:01 (GMT)
commit0a7b2c7bc393aee46081fe566ebd3edf0e8d5073 (patch)
treee48fe9605e711cd1d66688e40763dfe1789ee473
parentb9ebd04bbc34a31151a44c0a4c78aa4821f41136 (diff)
downloadcpython-0a7b2c7bc393aee46081fe566ebd3edf0e8d5073.zip
cpython-0a7b2c7bc393aee46081fe566ebd3edf0e8d5073.tar.gz
cpython-0a7b2c7bc393aee46081fe566ebd3edf0e8d5073.tar.bz2
#5173: StandardError wasn't removed in 2.6.
-rw-r--r--Doc/whatsnew/3.0.rst2
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.