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
12b50ce4
Kaydet (Commit)
12b50ce4
authored
Haz 05, 2015
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23659: Document **fmtparams in csv.register_dialect docstring.
Initial patch by Brandon Milam.
üst
25587742
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 @
12b50ce4
...
...
@@ -108,7 +108,7 @@ The :mod:`csv` module defines the following functions:
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
dialect can be specified either by passing a sub-class of :class:`Dialect`, or
...
...
Modules/_csv.c
Dosyayı görüntüle @
12b50ce4
...
...
@@ -1589,7 +1589,7 @@ PyDoc_STRVAR(csv_get_dialect_doc,
PyDoc_STRVAR
(
csv_register_dialect_doc
,
"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
,
"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