]> granicus.if.org Git - python/commitdiff
Clarify that PyErr_NewException creates an exception *class*, not instance.
authorGeorg Brandl <georg@python.org>
Wed, 13 Jul 2011 13:59:24 +0000 (15:59 +0200)
committerGeorg Brandl <georg@python.org>
Wed, 13 Jul 2011 13:59:24 +0000 (15:59 +0200)
Doc/c-api/exceptions.rst

index 8b1e8fc7fb96cbf5a9d13c1425242b914cc98379..a0011458bac9ccddd057f55ac28e302bf4832ac0 100644 (file)
@@ -352,10 +352,10 @@ is a separate error indicator for each thread.
 
 .. cfunction:: PyObject* PyErr_NewException(char *name, PyObject *base, PyObject *dict)
 
-   This utility function creates and returns a new exception object. The *name*
+   This utility function creates and returns a new exception class. The *name*
    argument must be the name of the new exception, a C string of the form
-   ``module.class``.  The *base* and *dict* arguments are normally *NULL*.  This
-   creates a class object derived from :exc:`Exception` (accessible in C as
+   ``module.classname``.  The *base* and *dict* arguments are normally *NULL*.
+   This creates a class object derived from :exc:`Exception` (accessible in C as
    :cdata:`PyExc_Exception`).
 
    The :attr:`__module__` attribute of the new class is set to the first part (up