[Python-checkins] python/dist/src/Doc/api exceptions.tex,1.8,1.9

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Wed, 14 Aug 2002 09:06:30 -0700


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

Modified Files:
	exceptions.tex 
Log Message:
Document PyExc_FutureWarning


Index: exceptions.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/exceptions.tex,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** exceptions.tex	29 Jul 2002 14:27:40 -0000	1.8
--- exceptions.tex	14 Aug 2002 16:06:28 -0000	1.9
***************
*** 266,273 ****
    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}.
  
    For information about warning control, see the documentation for the
--- 266,273 ----
    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},
!   \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