summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Yoshida <dynkin@gmail.com>2006-05-16 18:07:00 (GMT)
committerGeorge Yoshida <dynkin@gmail.com>2006-05-16 18:07:00 (GMT)
commit2f6ce536abd1339e6a93abe8ed8838c0b1379f77 (patch)
treea65de489f84002b63aff7339f4decdb86b57fa05
parent259d7d6b4a7e1f039a876e5ac1bf9693c631e8a2 (diff)
downloadcpython-2f6ce536abd1339e6a93abe8ed8838c0b1379f77.zip
cpython-2f6ce536abd1339e6a93abe8ed8838c0b1379f77.tar.gz
cpython-2f6ce536abd1339e6a93abe8ed8838c0b1379f77.tar.bz2
Mention that Exception is now a subclass of BaseException.
Remove a sentence that says that BaseException inherits from BaseException. (I guess this is just a copy & paste mistake.)
-rw-r--r--Doc/lib/libexcs.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libexcs.tex b/Doc/lib/libexcs.tex
index b51b7fc..150f38d 100644
--- a/Doc/lib/libexcs.tex
+++ b/Doc/lib/libexcs.tex
@@ -80,7 +80,6 @@ text message explaining why the exception had been raised. If more data needs
to be attached to the exception, attach it through arbitrary attributes on the
instance. All arguments are also stored in \member{args} as a tuple, but it will
eventually be deprecated and thus its use is discouraged.
-\versionchanged[Changed to inherit from \exception{BaseException}]{2.5}
\versionadded{2.5}
\end{excdesc}
@@ -88,6 +87,7 @@ eventually be deprecated and thus its use is discouraged.
All built-in, non-system-exiting exceptions are derived
from this class. All user-defined exceptions should also be derived
from this class.
+\versionchanged[Changed to inherit from \exception{BaseException}]{2.5}
\end{excdesc}
\begin{excdesc}{StandardError}