]> granicus.if.org Git - python/commitdiff
Exception isn't the root of all exception classes anymore.
authorGeorg Brandl <georg@python.org>
Fri, 26 May 2006 19:04:47 +0000 (19:04 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 26 May 2006 19:04:47 +0000 (19:04 +0000)
Doc/api/exceptions.tex

index e1bfb3800b733d762753539779387515776c003e..504d1dcd4e93ce15d03dd2b134266a2a0a4c4944 100644 (file)
@@ -336,8 +336,9 @@ for each thread.
   The \var{name} argument must be the name of the new exception, a C
   string of the form \code{module.class}.  The \var{base} and
   \var{dict} arguments are normally \NULL.  This creates a class
-  object derived from the root for all exceptions, the built-in name
-  \exception{Exception} (accessible in C as \cdata{PyExc_Exception}).
+  object derived from \exception{Exception} (accessible in C as
+  \cdata{PyExc_Exception}).
+
   The \member{__module__} attribute of the new class is set to the
   first part (up to the last dot) of the \var{name} argument, and the
   class name is set to the last part (after the last dot).  The