From b8c20a723f7f0dd4c78ae4daa7934c43749f04c1 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 14 Aug 2002 16:40:54 +0000 Subject: [PATCH] More updates describing FutureWarnings. --- Doc/doc/doc.tex | 3 +++ Doc/lib/libexcs.tex | 8 +++++++- Doc/lib/libwarnings.tex | 3 +++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Doc/doc/doc.tex b/Doc/doc/doc.tex index 4fec4a3bee..8c5f3385cf 100644 --- a/Doc/doc/doc.tex +++ b/Doc/doc/doc.tex @@ -1306,6 +1306,9 @@ This \UNIX\ is also followed by a space. features.} \lineii{RuntimeWarning} {Base category for warnings about dubious runtime features.} + \lineii{FutureWarning} + {Base category for warnings about constructs that will change + semantically in the future.} \end{tableii} \end{verbatim} diff --git a/Doc/lib/libexcs.tex b/Doc/lib/libexcs.tex index ae16082604..86b5281d46 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} diff --git a/Doc/lib/libwarnings.tex b/Doc/lib/libwarnings.tex index b0eb908763..48efd68aaa 100644 --- a/Doc/lib/libwarnings.tex +++ b/Doc/lib/libwarnings.tex @@ -68,6 +68,9 @@ syntactic features.} \lineii{RuntimeWarning}{Base category for warnings about dubious runtime features.} +\lineii{FutureWarning}{Base category for warnings about constructs +that will change semantically in the future.} + \end{tableii} While these are technically built-in exceptions, they are documented -- 2.40.0