[Python-checkins] python/dist/src/Doc/lib libcfgparser.tex,1.25,1.26

esr@users.sourceforge.net esr@users.sourceforge.net
Fri, 27 Dec 2002 12:05:39 -0800


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

Modified Files:
	libcfgparser.tex 
Log Message:
Added a useful warning to the documentation.


Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** libcfgparser.tex	25 Oct 2002 21:52:00 -0000	1.25
--- libcfgparser.tex	27 Dec 2002 20:05:36 -0000	1.26
***************
*** 14,21 ****
  The \class{ConfigParser} class implements a basic configuration file
  parser language which provides a structure similar to what you would
! find on Microsoft Windows INI files.  You can use this to write Python
  programs which can be customized by end users easily.
  
! The configuration file consists of sections, lead by a
  \samp{[section]} header and followed by \samp{name: value} entries,
  with continuations in the style of \rfc{822}; \samp{name=value} is
--- 14,23 ----
  The \class{ConfigParser} class implements a basic configuration file
  parser language which provides a structure similar to what you would
! find on Microsoft Windows INI files.  (Beware: this library does \emph{not}
! interpret or write the value-type prefixes used in the Windows
! Registry extended version of INI syntax.)  You can use this to write Python
  programs which can be customized by end users easily.
  
! The configuration file consists of sections, led by a
  \samp{[section]} header and followed by \samp{name: value} entries,
  with continuations in the style of \rfc{822}; \samp{name=value} is