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
fb501123
Kaydet (Commit)
fb501123
authored
Şub 28, 2010
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#8030: more docstring fix for builtin types.
üst
613c7a54
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
dictobject.c
Objects/dictobject.c
+2
-2
listobject.c
Objects/listobject.c
+1
-1
tupleobject.c
Objects/tupleobject.c
+4
-4
No files found.
Objects/dictobject.c
Dosyayı görüntüle @
fb501123
...
...
@@ -2327,9 +2327,9 @@ dict_iter(PyDictObject *dict)
}
PyDoc_STRVAR
(
dictionary_doc
,
"dict() -> new empty dictionary
.
\n
"
"dict() -> new empty dictionary
\n
"
"dict(mapping) -> new dictionary initialized from a mapping object's
\n
"
" (key, value) pairs
.
\n
"
" (key, value) pairs
\n
"
"dict(iterable) -> new dictionary initialized as if via:
\n
"
" d = {}
\n
"
" for k, v in iterable:
\n
"
...
...
Objects/listobject.c
Dosyayı görüntüle @
fb501123
...
...
@@ -2536,7 +2536,7 @@ static PySequenceMethods list_as_sequence = {
};
PyDoc_STRVAR
(
list_doc
,
"list() -> new list
\n
"
"list() -> new
empty
list
\n
"
"list(iterable) -> new list initialized from iterable's items"
);
...
...
Objects/tupleobject.c
Dosyayı görüntüle @
fb501123
...
...
@@ -681,10 +681,10 @@ tuple_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
}
PyDoc_STRVAR
(
tuple_doc
,
"tuple() ->
an empty tuple
\n
"
"tuple(sequence) -> tuple initialized from sequence's items
\n
"
"
\n
"
"
If the argument is a tuple, the return value is the same object."
);
"tuple() ->
empty tuple
\n
\
tuple(iterable) -> tuple initialized from iterable's items
\n
\
\n
\
If the argument is a tuple, the return value is the same object."
);
static
PySequenceMethods
tuple_as_sequence
=
{
(
lenfunc
)
tuplelength
,
/* sq_length */
...
...
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