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
b1efa536
Kaydet (Commit)
b1efa536
authored
Mar 04, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix possible setdefault refleak (closes #17328)
üst
29606930
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
NEWS
Misc/NEWS
+2
-0
dictobject.c
Objects/dictobject.c
+2
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
b1efa536
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
- Issue #17328: Fix possible refleak in dict.setdefault.
- Issue #17223: array module: Fix a crasher when converting an array containing
invalid characters (outside range [U+0000; U+10ffff]) to Unicode:
repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob.
...
...
Objects/dictobject.c
Dosyayı görüntüle @
b1efa536
...
...
@@ -2230,14 +2230,14 @@ dict_setdefault(register PyDictObject *mp, PyObject *args)
return
NULL
;
val
=
*
value_addr
;
if
(
val
==
NULL
)
{
Py_INCREF
(
failobj
);
Py_INCREF
(
key
);
if
(
mp
->
ma_keys
->
dk_usable
<=
0
)
{
/* Need to resize. */
if
(
insertion_resize
(
mp
)
<
0
)
return
NULL
;
ep
=
find_empty_slot
(
mp
,
key
,
hash
,
&
value_addr
);
}
Py_INCREF
(
failobj
);
Py_INCREF
(
key
);
MAINTAIN_TRACKING
(
mp
,
key
,
failobj
);
ep
->
me_key
=
key
;
ep
->
me_hash
=
hash
;
...
...
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