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

Fred L. Drake fdrake@users.sourceforge.net
Fri, 28 Sep 2001 09:57:18 -0700


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

Modified Files:
	libcfgparser.tex 
Log Message:
Use consistent version annotations instead of something ad hoc.

Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** libcfgparser.tex	2001/02/19 22:37:24	1.16
--- libcfgparser.tex	2001/09/28 16:57:16	1.17
***************
*** 129,133 ****
  \begin{methoddesc}{has_option}{section, option}
  If the given section exists, and contains the given option. return 1;
! otherwise return 0. (New in 1.6)
  \end{methoddesc}
  
--- 129,134 ----
  \begin{methoddesc}{has_option}{section, option}
  If the given section exists, and contains the given option. return 1;
! otherwise return 0.
! \versionadded{1.6}
  \end{methoddesc}
  
***************
*** 170,174 ****
  \begin{methoddesc}{set}{section, option, value}
  If the given section exists, set the given option to the specified value;
! otherwise raise \exception{NoSectionError}. (New in 1.6)
  \end{methoddesc}
  
--- 171,176 ----
  \begin{methoddesc}{set}{section, option, value}
  If the given section exists, set the given option to the specified value;
! otherwise raise \exception{NoSectionError}.
! \versionadded{1.6}
  \end{methoddesc}
  
***************
*** 176,180 ****
  Write a representation of the configuration to the specified file
  object.  This representation can be parsed by a future \method{read()}
! call. (New in 1.6)
  \end{methoddesc}
  
--- 178,183 ----
  Write a representation of the configuration to the specified file
  object.  This representation can be parsed by a future \method{read()}
! call.
! \versionadded{1.6}
  \end{methoddesc}
  
***************
*** 183,187 ****
  If the section does not exist, raise \exception{NoSectionError}. 
  If the option existed to be removed, return 1; otherwise return 0.
! (New in 1.6)
  \end{methoddesc}
  
--- 186,190 ----
  If the section does not exist, raise \exception{NoSectionError}. 
  If the option existed to be removed, return 1; otherwise return 0.
! \versionadded{1.6}
  \end{methoddesc}