[Python-checkins] python/dist/src/Doc/lib libwarnings.tex,1.10,1.11

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Thu, 06 Feb 2003 06:38:50 -0800


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

Modified Files:
	libwarnings.tex 
Log Message:
Fix description of filterwarnings() parameters (error noted by Richard Jones at
http://mechanicalcat.net/cgi-bin/log/python/turning_warnings_off.html)


Index: libwarnings.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libwarnings.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** libwarnings.tex	14 Aug 2002 16:40:54 -0000	1.10
--- libwarnings.tex	6 Feb 2003 14:38:45 -0000	1.11
***************
*** 117,128 ****
      \end{tableii}
  
! \item \var{message} is a compiled regular expression that the warning
! message must match (the match is case-insensitive)
  
  \item \var{category} is a class (a subclass of \exception{Warning}) of
        which the warning category must be a subclass in order to match
  
! \item \var{module} is a compiled regular expression that the module
!       name must match
  
  \item \var{lineno} is an integer that the line number where the
--- 117,129 ----
      \end{tableii}
  
! \item \var{message} is a string containing a regular expression that
! the warning message must match (the match is compiled to always be 
! case-insensitive) 
  
  \item \var{category} is a class (a subclass of \exception{Warning}) of
        which the warning category must be a subclass in order to match
  
! \item \var{module} is a string containing a regular expression that the module
!       name must match (the match is compiled to be case-sensitive)
  
  \item \var{lineno} is an integer that the line number where the