[Python-checkins] python/dist/src/Doc/lib libexcs.tex,1.46,1.47 libwarnings.tex,1.9,1.10

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Wed, 14 Aug 2002 09:40:56 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv26224/Doc/lib

Modified Files:
	libexcs.tex libwarnings.tex 
Log Message:
More updates describing FutureWarnings.


Index: libexcs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libexcs.tex,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** libexcs.tex	29 May 2002 15:54:55 -0000	1.46
--- libexcs.tex	14 Aug 2002 16:40:54 -0000	1.47
***************
*** 363,367 ****
  
  The following exceptions are used as warning categories; see the
! \module{warnings} module for more information.
  
  \begin{excdesc}{Warning}
--- 363,367 ----
  
  The following exceptions are used as warning categories; see the
! \refmodule{warnings} module for more information.
  
  \begin{excdesc}{Warning}
***************
*** 389,392 ****
--- 389,397 ----
  \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:
  
***************
*** 432,434 ****
--- 437,440 ----
  	  +-- OverflowWarning
  	  +-- RuntimeWarning
+ 	  +-- FutureWarning
  \end{verbatim}

Index: libwarnings.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libwarnings.tex,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** libwarnings.tex	21 Mar 2002 12:58:54 -0000	1.9
--- libwarnings.tex	14 Aug 2002 16:40:54 -0000	1.10
***************
*** 69,72 ****
--- 69,75 ----
  runtime features.}
  
+ \lineii{FutureWarning}{Base category for warnings about constructs
+ that will change semantically in the future.}
+ 
  \end{tableii}