[Python-checkins] CVS: python/dist/src/Doc/lib libcfgparser.tex,1.19,1.20

Fred L. Drake fdrake@users.sourceforge.net
Tue, 09 Oct 2001 07:58:26 -0700


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

Modified Files:
	libcfgparser.tex 
Log Message:
Note that the values for Boolean options are case-insensitive.

Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** libcfgparser.tex	2001/10/08 16:03:20	1.19
--- libcfgparser.tex	2001/10/09 14:58:24	1.20
***************
*** 167,172 ****
  for the option are \code{1}, \code{yes}, \code{true}, and \code{on},
  which cause this method to return true, and \code{0}, \code{no},
! \code{false}, and \code{off}, which cause it to return false.  Any
! other value will cause it to raise \exception{ValueError}.
  \end{methoddesc}
  
--- 167,173 ----
  for the option are \code{1}, \code{yes}, \code{true}, and \code{on},
  which cause this method to return true, and \code{0}, \code{no},
! \code{false}, and \code{off}, which cause it to return false.  These
! values are checked in a case-insensitive manner.  Any other value will
! cause it to raise \exception{ValueError}.
  \end{methoddesc}