Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
bf4358a0
Kaydet (Commit)
bf4358a0
authored
Eki 08, 2006
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport libcsv.tex bugfix from rev 52218. (SF ticket 1572471)
üst
beb82a37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
libcsv.tex
Doc/lib/libcsv.tex
+10
-10
No files found.
Doc/lib/libcsv.tex
Dosyayı görüntüle @
bf4358a0
...
@@ -64,9 +64,9 @@ dialect. It may be an instance of a subclass of the \class{Dialect}
...
@@ -64,9 +64,9 @@ dialect. It may be an instance of a subclass of the \class{Dialect}
class or one of the strings returned by the
\function
{
list
_
dialects
}
class or one of the strings returned by the
\function
{
list
_
dialects
}
function. The other optional
{}
\var
{
fmtparam
}
keyword arguments can be
function. The other optional
{}
\var
{
fmtparam
}
keyword arguments can be
given to override individual formatting parameters in the current
given to override individual formatting parameters in the current
dialect. For
more information
about the dialect and formatting
dialect. For
full details
about the dialect and formatting
parameters, see section~
\ref
{
csv-fmt-params
}
, ``Dialects and Formatting
parameters, see section~
\ref
{
csv-fmt-params
}
, ``Dialects and Formatting
Parameters''
for details of these parameters
.
Parameters''.
All data read are returned as strings. No automatic data type
All data read are returned as strings. No automatic data type
conversion is performed.
conversion is performed.
...
@@ -96,10 +96,10 @@ parameters specific to a particular CSV dialect. It may be an instance
...
@@ -96,10 +96,10 @@ parameters specific to a particular CSV dialect. It may be an instance
of a subclass of the
\class
{
Dialect
}
class or one of the strings
of a subclass of the
\class
{
Dialect
}
class or one of the strings
returned by the
\function
{
list
_
dialects
}
function. The other optional
returned by the
\function
{
list
_
dialects
}
function. The other optional
{}
\var
{
fmtparam
}
keyword arguments can be given to override individual
{}
\var
{
fmtparam
}
keyword arguments can be given to override individual
formatting parameters in the current dialect. For
more information
formatting parameters in the current dialect. For
full details
about the dialect and formatting parameters, see
about the dialect and formatting parameters, see
section~
\ref
{
csv-fmt-params
}
, ``Dialects and Formatting Parameters''
for
section~
\ref
{
csv-fmt-params
}
, ``Dialects and Formatting Parameters''
.
details of these parameters.
To make it as easy as possible to
To make it as easy as possible to
interface with modules which implement the DB API, the value
interface with modules which implement the DB API, the value
\constant
{
None
}
is written as the empty string. While this isn't a
\constant
{
None
}
is written as the empty string. While this isn't a
reversible transformation, it makes it easier to dump SQL NULL data values
reversible transformation, it makes it easier to dump SQL NULL data values
...
@@ -113,9 +113,8 @@ Associate \var{dialect} with \var{name}. \var{name} must be a string
...
@@ -113,9 +113,8 @@ Associate \var{dialect} with \var{name}. \var{name} must be a string
or Unicode object. The dialect can be specified either by passing a
or Unicode object. The dialect can be specified either by passing a
sub-class of
\class
{
Dialect
}
, or by
\var
{
fmtparam
}
keyword arguments,
sub-class of
\class
{
Dialect
}
, or by
\var
{
fmtparam
}
keyword arguments,
or both, with keyword arguments overriding parameters of the dialect.
or both, with keyword arguments overriding parameters of the dialect.
For more information about the dialect and formatting parameters, see
For full details about the dialect and formatting parameters, see
section~
\ref
{
csv-fmt-params
}
, ``Dialects and Formatting Parameters''
section~
\ref
{
csv-fmt-params
}
, ``Dialects and Formatting Parameters''.
for details of these parameters.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
unregister
_
dialect
}{
name
}
\begin{funcdesc}
{
unregister
_
dialect
}{
name
}
...
@@ -197,12 +196,13 @@ attributes, which are used to define the parameters for a specific
...
@@ -197,12 +196,13 @@ attributes, which are used to define the parameters for a specific
\begin{classdesc}
{
excel
}{}
\begin{classdesc}
{
excel
}{}
The
\class
{
excel
}
class defines the usual properties of an Excel-generated
The
\class
{
excel
}
class defines the usual properties of an Excel-generated
CSV file.
CSV file.
It is registered with the dialect name
\code
{
'excel'
}
.
\end{classdesc}
\end{classdesc}
\begin{classdesc}
{
excel
_
tab
}{}
\begin{classdesc}
{
excel
_
tab
}{}
The
\class
{
excel
_
tab
}
class defines the usual properties of an
The
\class
{
excel
_
tab
}
class defines the usual properties of an
Excel-generated TAB-delimited file.
Excel-generated TAB-delimited file. It is registered with the dialect name
\code
{
'excel-tab'
}
.
\end{classdesc}
\end{classdesc}
\begin{classdesc}
{
Sniffer
}{}
\begin{classdesc}
{
Sniffer
}{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment