Commit 29ce2d7d authored by Barry Warsaw's avatar Barry Warsaw

Document PyExc_FutureWarning

parent 9f007395
...@@ -265,10 +265,10 @@ for each thread. ...@@ -265,10 +265,10 @@ for each thread.
names are \samp{PyExc_} followed by the Python exception name. names are \samp{PyExc_} followed by the Python exception name.
These have the type \ctype{PyObject*}; they are all class objects. These have the type \ctype{PyObject*}; they are all class objects.
Their names are \cdata{PyExc_Warning}, \cdata{PyExc_UserWarning}, Their names are \cdata{PyExc_Warning}, \cdata{PyExc_UserWarning},
\cdata{PyExc_DeprecationWarning}, \cdata{PyExc_SyntaxWarning}, and \cdata{PyExc_DeprecationWarning}, \cdata{PyExc_SyntaxWarning},
\cdata{PyExc_RuntimeWarning}. \cdata{PyExc_Warning} is a subclass \cdata{PyExc_RuntimeWarning}, and \cdata{PyExc_FutureWarning}.
of \cdata{PyExc_Exception}; the other warning categories are \cdata{PyExc_Warning} is a subclass of \cdata{PyExc_Exception}; the
subclasses of \cdata{PyExc_Warning}. other warning categories are subclasses of \cdata{PyExc_Warning}.
For information about warning control, see the documentation for the For information about warning control, see the documentation for the
\module{warnings} module and the \programopt{-W} option in the \module{warnings} module and the \programopt{-W} option in the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment