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
ab2f966f
Kaydet (Commit)
ab2f966f
authored
Haz 05, 2015
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #23659: Document **fmtparams in csv.register_dialect docstring.
Initial patch by Brandon Milam.
üst
a5f62edb
12b50ce4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
csv.rst
Doc/library/csv.rst
+1
-1
_csv.c
Modules/_csv.c
+1
-1
No files found.
Doc/library/csv.rst
Dosyayı görüntüle @
ab2f966f
...
@@ -109,7 +109,7 @@ The :mod:`csv` module defines the following functions:
...
@@ -109,7 +109,7 @@ The :mod:`csv` module defines the following functions:
spamwriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
spamwriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
.. function:: register_dialect(name[, dialect
], **fmtparams
)
.. function:: register_dialect(name[, dialect
[, **fmtparams]]
)
Associate *dialect* with *name*. *name* must be a string. The
Associate *dialect* with *name*. *name* must be a string. The
dialect can be specified either by passing a sub-class of :class:`Dialect`, or
dialect can be specified either by passing a sub-class of :class:`Dialect`, or
...
...
Modules/_csv.c
Dosyayı görüntüle @
ab2f966f
...
@@ -1588,7 +1588,7 @@ PyDoc_STRVAR(csv_get_dialect_doc,
...
@@ -1588,7 +1588,7 @@ PyDoc_STRVAR(csv_get_dialect_doc,
PyDoc_STRVAR
(
csv_register_dialect_doc
,
PyDoc_STRVAR
(
csv_register_dialect_doc
,
"Create a mapping from a string name to a dialect class.
\n
"
"Create a mapping from a string name to a dialect class.
\n
"
" dialect = csv.register_dialect(name
, dialect
)"
);
" dialect = csv.register_dialect(name
[, dialect[, **fmtparams]]
)"
);
PyDoc_STRVAR
(
csv_unregister_dialect_doc
,
PyDoc_STRVAR
(
csv_unregister_dialect_doc
,
"Delete the name/dialect mapping associated with a string name.
\n
"
"Delete the name/dialect mapping associated with a string name.
\n
"
...
...
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