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
64acccf4
Kaydet (Commit)
64acccf4
authored
Nis 27, 2012
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
decref cached keys on type deallocation (#13903)
üst
9e66ac68
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
typeobject.c
Objects/typeobject.c
+5
-3
No files found.
Objects/typeobject.c
Dosyayı görüntüle @
64acccf4
...
...
@@ -2593,6 +2593,9 @@ type_setattro(PyTypeObject *type, PyObject *name, PyObject *value)
return
update_slot
(
type
,
name
);
}
extern
void
_PyDictKeys_DecRef
(
PyDictKeysObject
*
keys
);
static
void
type_dealloc
(
PyTypeObject
*
type
)
{
...
...
@@ -2616,6 +2619,8 @@ type_dealloc(PyTypeObject *type)
Py_XDECREF
(
et
->
ht_name
);
Py_XDECREF
(
et
->
ht_qualname
);
Py_XDECREF
(
et
->
ht_slots
);
if
(
et
->
ht_cached_keys
)
_PyDictKeys_DecRef
(
et
->
ht_cached_keys
);
Py_TYPE
(
type
)
->
tp_free
((
PyObject
*
)
type
);
}
...
...
@@ -2791,9 +2796,6 @@ type_traverse(PyTypeObject *type, visitproc visit, void *arg)
return
0
;
}
extern
void
_PyDictKeys_DecRef
(
PyDictKeysObject
*
keys
);
static
int
type_clear
(
PyTypeObject
*
type
)
{
...
...
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