[Python-checkins] r46018 - python/trunk/Doc/lib/libexcs.tex

george.yoshida python-checkins at python.org
Tue May 16 20:08:23 CEST 2006


Author: george.yoshida
Date: Tue May 16 20:07:00 2006
New Revision: 46018

Modified:
   python/trunk/Doc/lib/libexcs.tex
Log:
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.)


Modified: python/trunk/Doc/lib/libexcs.tex
==============================================================================
--- python/trunk/Doc/lib/libexcs.tex	(original)
+++ python/trunk/Doc/lib/libexcs.tex	Tue May 16 20:07:00 2006
@@ -80,7 +80,6 @@
 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 @@
 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}


More information about the Python-checkins mailing list