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

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 30 Dec 2002 15:50:21 -0800


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

Modified Files:
	libcfgparser.tex 
Log Message:
- re-mark ESR's warning about extended registry syntax
- document InterpolationSyntaxError


Index: libcfgparser.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcfgparser.tex,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** libcfgparser.tex	27 Dec 2002 20:05:36 -0000	1.26
--- libcfgparser.tex	30 Dec 2002 23:50:19 -0000	1.27
***************
*** 14,22 ****
  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,
--- 14,25 ----
  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.
  
+ \begin{notice}[warning]
+   This library does \emph{not} interpret or write the value-type
+   prefixes used in the Windows Registry extended version of INI syntax.
+ \end{notice}
+ 
  The configuration file consists of sections, led by a
  \samp{[section]} header and followed by \samp{name: value} entries,
***************
*** 94,97 ****
--- 97,105 ----
  Exception raised when string interpolation cannot be completed because
  the number of iterations exceeds \constant{MAX_INTERPOLATION_DEPTH}.
+ \end{excdesc}
+ 
+ \begin{excdesc}{InterpolationSyntaxError}
+ Exception raised when the source text into which substitutions are
+ made does not conform to the required syntax.
  \end{excdesc}