[Python-checkins] python/dist/src/Doc/lib libcsv.tex, 1.7.8.2,
1.7.8.3
montanaro at users.sourceforge.net
montanaro at users.sourceforge.net
Wed Jan 21 08:49:45 EST 2004
- Previous message: [Python-checkins] python/dist/src/Doc/lib libcsv.tex,1.11,1.12
- Next message: [Python-checkins] python/nondist/sandbox/setobj automata.py, 1.2,
NONE cube.py, 1.2, NONE setobject.c, 1.24, NONE setup.py, 1.1,
NONE test_set.py, 1.22, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv13086a
Modified Files:
Tag: release23-maint
libcsv.tex
Log Message:
backport some doc fixes
Index: libcsv.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcsv.tex,v
retrieving revision 1.7.8.2
retrieving revision 1.7.8.3
diff -C2 -d -r1.7.8.2 -r1.7.8.3
*** libcsv.tex 10 Sep 2003 18:57:04 -0000 1.7.8.2
--- libcsv.tex 21 Jan 2004 13:49:43 -0000 1.7.8.3
***************
*** 229,233 ****
\begin{memberdesc}[Dialect]{doublequote}
Controls how instances of \var{quotechar} appearing inside a field should be
! themselves be quoted. When \constant{True}, the character is doubledd.
When \constant{False}, the \var{escapechar} must be a one-character string
which is used as a prefix to the \var{quotechar}. It defaults to
--- 229,233 ----
\begin{memberdesc}[Dialect]{doublequote}
Controls how instances of \var{quotechar} appearing inside a field should be
! themselves be quoted. When \constant{True}, the character is doubled.
When \constant{False}, the \var{escapechar} must be a one-character string
which is used as a prefix to the \var{quotechar}. It defaults to
***************
*** 275,280 ****
\subsection{Writer Objects}
! Writer objects (\class{DictWriter} instances and objects returned by
! the \function{writer()} function) have the following public methods:
\begin{methoddesc}[csv writer]{writerow}{row}
--- 275,286 ----
\subsection{Writer Objects}
! \class{Writer} objects (\class{DictWriter} instances and objects returned by
! the \function{writer()} function) have the following public methods. A
! {}\var{row} must be a sequence of strings or numbers for \class{Writer}
! objects and a dictionary mapping fieldnames to strings or numbers (by
! passing them through \function{str()} first) for {}\class{DictWriter}
! objects. Note that complex numbers are written out surrounded by parens.
! This may cause some problems for other programs which read CSV files
! (assuming they support complex numbers at all).
\begin{methoddesc}[csv writer]{writerow}{row}
***************
*** 284,288 ****
\begin{methoddesc}[csv writer]{writerows}{rows}
! Write all the \var{rows} parameters to the writer's file object, formatted
according to the current dialect.
\end{methoddesc}
--- 290,295 ----
\begin{methoddesc}[csv writer]{writerows}{rows}
! Write all the \var{rows} parameters (a list of \var{row} objects as
! described above) to the writer's file object, formatted
according to the current dialect.
\end{methoddesc}
- Previous message: [Python-checkins] python/dist/src/Doc/lib libcsv.tex,1.11,1.12
- Next message: [Python-checkins] python/nondist/sandbox/setobj automata.py, 1.2,
NONE cube.py, 1.2, NONE setobject.c, 1.24, NONE setup.py, 1.1,
NONE test_set.py, 1.22, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list