This patch adds Documentation to my ConfigParser-bool patch like GvR requested. See http://sourceforge.net/tracker/?func=detail&atid=305470&aid=467580&group_id=5470 for further enlightenment. --drt@un.bewaff.net - http://c0re.jp/ ? ConfigParser-bool-doc.patch Index: Doc/lib/libcfgparser.tex =================================================================== RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v retrieving revision 1.18 diff -c -r1.18 libcfgparser.tex *** Doc/lib/libcfgparser.tex 2001/10/01 17:04:10 1.18 --- Doc/lib/libcfgparser.tex 2001/10/05 21:46:51 *************** *** 163,171 **** \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} \begin{methoddesc}{set}{section, option, value} --- 163,173 ---- \begin{methoddesc}{getboolean}{section, option} A convenience method which coerces the \var{option} in the specified ! \var{section} to a Boolean value. \samp{0}, \samp{FALSE}, \samp{NO} ! and \samp{OFF} will return \samp{0} while \samp{1}, \samp{TRUE}, ! \samp{YES} and \samp{ON} will return \samp{1}, any others will raise ! \exception{ValueError}. The interpretation of the textual values is ! case insensitive. \end{methoddesc} \begin{methoddesc}{set}{section, option, value}