[Python-checkins] python/dist/src/Doc/lib libcsv.tex,1.7,1.7.8.1

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sat Aug 30 23:46:45 EDT 2003


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

Modified Files:
      Tag: release23-maint
	libcsv.tex 
Log Message:
SF bug #797853:  Small problems with the csv module's documentation



Index: libcsv.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcsv.tex,v
retrieving revision 1.7
retrieving revision 1.7.8.1
diff -C2 -d -r1.7 -r1.7.8.1
*** libcsv.tex	2 Jul 2003 15:32:48 -0000	1.7
--- libcsv.tex	31 Aug 2003 05:46:43 -0000	1.7.8.1
***************
*** 46,50 ****
  
  
! \subsection{Module Contents}
  
  The \module{csv} module defines the following functions:
--- 46,50 ----
  
  
! \subsection{Module Contents \label{csv-contents}}
  
  The \module{csv} module defines the following functions:
***************
*** 130,134 ****
  added as a sequence keyed by the value of \var{restkey}.  If the row read
  has fewer fields than the fieldnames sequence, the remaining keys take the
! value of the optiona \var{restval} parameter.  All other parameters are
  interpreted as for \class{reader} objects.
  \end{classdesc}
--- 130,134 ----
  added as a sequence keyed by the value of \var{restkey}.  If the row read
  has fewer fields than the fieldnames sequence, the remaining keys take the
! value of the optional \var{restval} parameter.  All other parameters are
  interpreted as for \class{reader} objects.
  \end{classdesc}
***************
*** 219,223 ****
  instead of, the \var{dialect} parameter, the programmer can also specify
  individual formatting parameters, which have the same names as the
! attributes defined above for the \class{Dialect} class.
  
  Dialects support the following attributes:
--- 219,223 ----
  instead of, the \var{dialect} parameter, the programmer can also specify
  individual formatting parameters, which have the same names as the
! attributes defined below for the \class{Dialect} class.
  
  Dialects support the following attributes:
***************
*** 252,257 ****
  \begin{memberdesc}[Dialect]{quoting}
  Controls when quotes should be generated by the writer.  It can take on any
! of the \constant{QUOTE_*} constants defined below and defaults to
! \constant{QUOTE_MINIMAL}. 
  \end{memberdesc}
  
--- 252,257 ----
  \begin{memberdesc}[Dialect]{quoting}
  Controls when quotes should be generated by the writer.  It can take on any
! of the \constant{QUOTE_*} constants (see section~\ref{csv-contents})
! and defaults to \constant{QUOTE_MINIMAL}. 
  \end{memberdesc}
  
***************
*** 265,269 ****
  
  Reader objects (\class{DictReader} instances and objects returned by
! the \function{reader()}function) have the following public methods:
  
  \begin{methoddesc}[csv reader]{next}{}
--- 265,269 ----
  
  Reader objects (\class{DictReader} instances and objects returned by
! the \function{reader()} function) have the following public methods:
  
  \begin{methoddesc}[csv reader]{next}{}





More information about the Python-checkins mailing list