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

Fred L. Drake fdrake@users.sourceforge.net
Mon, 08 Oct 2001 09:03:22 -0700


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

Modified Files:
	libcfgparser.tex 
Log Message:
Update the description of getboolean() to reflect the changes made by
SF patch #467580.


Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** libcfgparser.tex	2001/10/01 17:04:10	1.18
--- libcfgparser.tex	2001/10/08 16:03:20	1.19
***************
*** 164,170 ****
  \begin{methoddesc}{getboolean}{section, option}
  A convenience method which coerces the \var{option} in the specified
! \var{section} to a Boolean value.  Note that the only accepted values
! for the option are \samp{0} and \samp{1}, any others will raise
! \exception{ValueError}.
  \end{methoddesc}
  
--- 164,172 ----
  \begin{methoddesc}{getboolean}{section, option}
  A convenience method which coerces the \var{option} in the specified
! \var{section} to a Boolean value.  Note that the accepted values
! 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}