summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libexcs.tex
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-08-14 16:40:54 (GMT)
committerBarry Warsaw <barry@python.org>2002-08-14 16:40:54 (GMT)
commitb8c20a723f7f0dd4c78ae4daa7934c43749f04c1 (patch)
tree7daedaaf04eadcd28329936bfb9475f1866b2aa6 /Doc/lib/libexcs.tex
parent2f238c1b220c8952a9bea0ef598d53db02c50bc9 (diff)
downloadcpython-b8c20a723f7f0dd4c78ae4daa7934c43749f04c1.zip
cpython-b8c20a723f7f0dd4c78ae4daa7934c43749f04c1.tar.gz
cpython-b8c20a723f7f0dd4c78ae4daa7934c43749f04c1.tar.bz2
More updates describing FutureWarnings.
Diffstat (limited to 'Doc/lib/libexcs.tex')
-rw-r--r--Doc/lib/libexcs.tex8
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/lib/libexcs.tex b/Doc/lib/libexcs.tex
index ae16082..86b5281 100644
--- a/Doc/lib/libexcs.tex
+++ b/Doc/lib/libexcs.tex
@@ -362,7 +362,7 @@ Raised when an \keyword{assert} statement fails.
\setindexsubitem{(built-in warning)}
The following exceptions are used as warning categories; see the
-\module{warnings} module for more information.
+\refmodule{warnings} module for more information.
\begin{excdesc}{Warning}
Base class for warning categories.
@@ -388,6 +388,11 @@ Base class for warnings about dubious syntax
Base class for warnings about dubious runtime behavior.
\end{excdesc}
+\begin{excdesc}{FutureWarning}
+Base class for warnings about constructs that will change semantically
+in the future.
+\end{excdesc}
+
The class hierarchy for built-in exceptions is:
\begin{verbatim}
@@ -431,4 +436,5 @@ The class hierarchy for built-in exceptions is:
+-- SyntaxWarning
+-- OverflowWarning
+-- RuntimeWarning
+ +-- FutureWarning
\end{verbatim}