summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-08-14 16:06:28 (GMT)
committerBarry Warsaw <barry@python.org>2002-08-14 16:06:28 (GMT)
commit29ce2d7d1e6e5ead830087fa8781a1e2384e1d29 (patch)
treefa7f2b46ff675b9b5e08642608433f7937dea9ce /Doc
parent9f00739551e0ebef1c337f5640703f63abc4657e (diff)
downloadcpython-29ce2d7d1e6e5ead830087fa8781a1e2384e1d29.zip
cpython-29ce2d7d1e6e5ead830087fa8781a1e2384e1d29.tar.gz
cpython-29ce2d7d1e6e5ead830087fa8781a1e2384e1d29.tar.bz2
Document PyExc_FutureWarning
Diffstat (limited to 'Doc')
-rw-r--r--Doc/api/exceptions.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/api/exceptions.tex b/Doc/api/exceptions.tex
index f4e4ef0..80f1353 100644
--- a/Doc/api/exceptions.tex
+++ b/Doc/api/exceptions.tex
@@ -265,10 +265,10 @@ for each thread.
names are \samp{PyExc_} followed by the Python exception name.
These have the type \ctype{PyObject*}; they are all class objects.
Their names are \cdata{PyExc_Warning}, \cdata{PyExc_UserWarning},
- \cdata{PyExc_DeprecationWarning}, \cdata{PyExc_SyntaxWarning}, and
- \cdata{PyExc_RuntimeWarning}. \cdata{PyExc_Warning} is a subclass
- of \cdata{PyExc_Exception}; the other warning categories are
- subclasses of \cdata{PyExc_Warning}.
+ \cdata{PyExc_DeprecationWarning}, \cdata{PyExc_SyntaxWarning},
+ \cdata{PyExc_RuntimeWarning}, and \cdata{PyExc_FutureWarning}.
+ \cdata{PyExc_Warning} is a subclass of \cdata{PyExc_Exception}; the
+ other warning categories are subclasses of \cdata{PyExc_Warning}.
For information about warning control, see the documentation for the
\module{warnings} module and the \programopt{-W} option in the