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
9cb33b7d
Kaydet (Commit)
9cb33b7d
authored
Ock 14, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
correct defaultdict signature in docstring (closes #20250)
Patch from Andrew Barnert.
üst
56882229
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
_collectionsmodule.c
Modules/_collectionsmodule.c
+3
-1
No files found.
Modules/_collectionsmodule.c
Dosyayı görüntüle @
9cb33b7d
...
...
@@ -1625,11 +1625,13 @@ defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
}
PyDoc_STRVAR
(
defdict_doc
,
"defaultdict(default_factory) --> dict with default factory
\n
\
"defaultdict(default_factory
[, ...]
) --> dict with default factory
\n
\
\n
\
The default factory is called without arguments to produce
\n
\
a new value when a key is not present, in __getitem__ only.
\n
\
A defaultdict compares equal to a dict with the same items.
\n
\
All remaining arguments are treated the same as if they were
\n
\
passed to the dict constructor, including keyword arguments.
\n
\
"
);
/* See comment in xxsubtype.c */
...
...
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