]> granicus.if.org Git - python/commitdiff
Mention that Exception is now a subclass of BaseException.
authorGeorge Yoshida <dynkin@gmail.com>
Tue, 16 May 2006 18:07:00 +0000 (18:07 +0000)
committerGeorge Yoshida <dynkin@gmail.com>
Tue, 16 May 2006 18:07:00 +0000 (18:07 +0000)
Remove a sentence that says that BaseException inherits from BaseException.
(I guess this is just a copy & paste mistake.)

Doc/lib/libexcs.tex

index b51b7fc89b5fdb44fd8e980d6cbb22807beed772..150f38d82bbef797a850cd4d125e6e7536023037 100644 (file)
@@ -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}