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
574aa325
Kaydet (Commit)
574aa325
authored
Eyl 01, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch #798467: Update docstring of has_key for bool changes
(Contributed by George Yoshida.)
üst
6f6d7b93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
descrobject.c
Objects/descrobject.c
+1
-1
dictobject.c
Objects/dictobject.c
+1
-1
No files found.
Objects/descrobject.c
Dosyayı görüntüle @
574aa325
...
...
@@ -765,7 +765,7 @@ proxy_copy(proxyobject *pp)
static
PyMethodDef
proxy_methods
[]
=
{
{
"has_key"
,
(
PyCFunction
)
proxy_has_key
,
METH_O
,
PyDoc_STR
(
"D.has_key(k) ->
1 if D has a key k, else 0
"
)},
PyDoc_STR
(
"D.has_key(k) ->
True if D has a key k, else False
"
)},
{
"get"
,
(
PyCFunction
)
proxy_get
,
METH_VARARGS
,
PyDoc_STR
(
"D.get(k[,d]) -> D[k] if D.has_key(k), else d."
" d defaults to None."
)},
...
...
Objects/dictobject.c
Dosyayı görüntüle @
574aa325
...
...
@@ -1733,7 +1733,7 @@ dict_iteritems(dictobject *dict)
PyDoc_STRVAR
(
has_key__doc__
,
"D.has_key(k) ->
1 if D has a key k, else 0
"
);
"D.has_key(k) ->
True if D has a key k, else False
"
);
PyDoc_STRVAR
(
get__doc__
,
"D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None."
);
...
...
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