[Python-checkins] python/dist/src/Doc/lib libcfgparser.tex,1.22,1.23

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri, 27 Sep 2002 08:49:59 -0700


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

Modified Files:
	libcfgparser.tex 
Log Message:
items():  New method, provided by Gustavo Niemeyer in SF bug #545096.

Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** libcfgparser.tex	5 Apr 2002 02:21:09 -0000	1.22
--- libcfgparser.tex	27 Sep 2002 15:49:56 -0000	1.23
***************
*** 190,193 ****
--- 190,200 ----
  \end{methoddesc}
  
+ \begin{methoddesc}{items}{section\optional{, raw\optional{, vars}}}
+ Create a generator which will return a tuple \code{(name, value)} for
+ each option in the given \var{section}. Optional arguments have the
+ same meaning as for the \code{get()} method.
+ \versionadded{2.3}
+ \end{methoddesc}
+ 
  \begin{methoddesc}{set}{section, option, value}
  If the given section exists, set the given option to the specified value;