[Python-checkins] python/dist/src/Doc/lib libcfgparser.tex, 1.30, 1.31

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Oct 21 12:50:57 EDT 2003


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

Modified Files:
	libcfgparser.tex 
Log Message:
ConfigParser.items() and SafeConfigParser.items() no longer return a
generator.  See SF bug #818861.


Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** libcfgparser.tex	14 Aug 2003 19:58:35 -0000	1.30
--- libcfgparser.tex	21 Oct 2003 16:50:55 -0000	1.31
***************
*** 280,286 ****
  
  \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}
--- 280,286 ----
  
  \begin{methoddesc}{items}{section\optional{, raw\optional{, vars}}}
! Return a list of \code{(\var{name}, \var{value})} pairs for each
! option in the given \var{section}. Optional arguments have the
! same meaning as for the \method{get()} method.
  \versionadded{2.3}
  \end{methoddesc}





More information about the Python-checkins mailing list