[Python-checkins] r50958 - python/trunk/Doc/lib/libcsv.tex
andrew.kuchling
python-checkins at python.org
Sat Jul 29 23:27:13 CEST 2006
Author: andrew.kuchling
Date: Sat Jul 29 23:27:12 2006
New Revision: 50958
Modified:
python/trunk/Doc/lib/libcsv.tex
Log:
Follow TeX's conventions for hyphens
Modified: python/trunk/Doc/lib/libcsv.tex
==============================================================================
--- python/trunk/Doc/lib/libcsv.tex (original)
+++ python/trunk/Doc/lib/libcsv.tex Sat Jul 29 23:27:12 2006
@@ -55,7 +55,7 @@
Return a reader object which will iterate over lines in the given
{}\var{csvfile}. \var{csvfile} can be any object which supports the
iterator protocol and returns a string each time its \method{next}
-method is called - file objects and list objects are both suitable.
+method is called --- file objects and list objects are both suitable.
If \var{csvfile} is a file object, it must be opened with
the 'b' flag on platforms where that makes a difference. An optional
{}\var{dialect} parameter can be given
@@ -77,7 +77,7 @@
introduce spurious characters into quoted fields, with no way for the user
to control that behavior. The previous behavior caused considerable
problems, particularly on platforms that did not use the unix line ending
-conventions, or with files that originated on those platforms - users were
+conventions, or with files that originated on those platforms --- users were
finding mysterious newlines where they didn't expect them]{2.5}
\end{funcdesc}
@@ -414,7 +414,7 @@
reader = csv.reader(open("passwd", "rb"), 'unixpwd')
\end{verbatim}
-A slightly more advanced use of the reader - catching and reporting errors:
+A slightly more advanced use of the reader --- catching and reporting errors:
\begin{verbatim}
import csv, sys
More information about the Python-checkins
mailing list