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
5bd378bf
Kaydet (Commit)
5bd378bf
authored
Nis 03, 2003
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add get_referrents() helper function.
üst
7fb697b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
1 deletion
+32
-1
gcmodule.c
Modules/gcmodule.c
+32
-1
No files found.
Modules/gcmodule.c
Dosyayı görüntüle @
5bd378bf
...
...
@@ -828,6 +828,34 @@ gc_get_referrers(PyObject *self, PyObject *args)
return
result
;
}
static
int
referrentsvisit
(
PyObject
*
obj
,
PyObject
*
list
)
{
if
(
PyList_Append
(
list
,
obj
)
<
0
)
return
1
;
return
0
;
}
PyDoc_STRVAR
(
gc_get_referrents__doc__
,
"get_referrents(*objs) -> list
\n
\
Return the list of objects that directly refer to any of objs."
);
static
PyObject
*
gc_get_referrents
(
PyObject
*
self
,
PyObject
*
args
)
{
int
i
;
PyObject
*
result
=
PyList_New
(
0
);
for
(
i
=
0
;
i
<
PyTuple_GET_SIZE
(
args
);
i
++
)
{
PyObject
*
obj
=
PyTuple_GET_ITEM
(
args
,
i
);
traverseproc
traverse
=
obj
->
ob_type
->
tp_traverse
;
if
(
!
traverse
)
continue
;
if
(
traverse
(
obj
,
(
visitproc
)
referrentsvisit
,
result
))
return
NULL
;
}
return
result
;
}
PyDoc_STRVAR
(
gc_get_objects__doc__
,
"get_objects() -> [...]
\n
"
"
\n
"
...
...
@@ -884,7 +912,8 @@ PyDoc_STRVAR(gc__doc__,
"set_threshold() -- Set the collection thresholds.
\n
"
"get_threshold() -- Return the current the collection thresholds.
\n
"
"get_objects() -- Return a list of all objects tracked by the collector.
\n
"
"get_referrers() -- Return the list of objects that refer to an object.
\n
"
);
"get_referrers() -- Return the list of objects that refer to an object.
\n
"
"get_referrents() -- Return the list of objects that an object refers to.
\n
"
);
static
PyMethodDef
GcMethods
[]
=
{
{
"enable"
,
gc_enable
,
METH_VARARGS
,
gc_enable__doc__
},
...
...
@@ -898,6 +927,8 @@ static PyMethodDef GcMethods[] = {
{
"get_objects"
,
gc_get_objects
,
METH_VARARGS
,
gc_get_objects__doc__
},
{
"get_referrers"
,
gc_get_referrers
,
METH_VARARGS
,
gc_get_referrers__doc__
},
{
"get_referrents"
,
gc_get_referrents
,
METH_VARARGS
,
gc_get_referrents__doc__
},
{
NULL
,
NULL
}
/* Sentinel */
};
...
...
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