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
dbf409fb
Kaydet (Commit)
dbf409fb
authored
Mar 18, 2002
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Re-enable GC of iter objects.
üst
d1648378
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
iterobject.c
Objects/iterobject.c
+12
-14
No files found.
Objects/iterobject.c
Dosyayı görüntüle @
dbf409fb
...
...
@@ -12,22 +12,21 @@ PyObject *
PySeqIter_New
(
PyObject
*
seq
)
{
seqiterobject
*
it
;
it
=
PyObject_
NEW
(
seqiterobject
,
&
PySeqIter_Type
);
it
=
PyObject_
GC_New
(
seqiterobject
,
&
PySeqIter_Type
);
if
(
it
==
NULL
)
return
NULL
;
it
->
it_index
=
0
;
Py_INCREF
(
seq
);
it
->
it_seq
=
seq
;
PyObject_GC_Init
(
it
);
_PyObject_GC_TRACK
(
it
);
return
(
PyObject
*
)
it
;
}
static
void
iter_dealloc
(
seqiterobject
*
it
)
{
PyObject_GC_Fini
(
it
);
_PyObject_GC_UNTRACK
(
it
);
Py_DECREF
(
it
->
it_seq
);
it
=
(
seqiterobject
*
)
PyObject_AS_GC
(
it
);
PyObject_DEL
(
it
);
PyObject_GC_Del
(
it
);
}
static
int
...
...
@@ -100,7 +99,7 @@ PyTypeObject PySeqIter_Type = {
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
"iterator"
,
/* tp_name */
sizeof
(
seqiterobject
)
+
PyGC_HEAD_SIZE
,
/* tp_basicsize */
sizeof
(
seqiterobject
)
,
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
iter_dealloc
,
/* tp_dealloc */
...
...
@@ -118,7 +117,7 @@ PyTypeObject PySeqIter_Type = {
PyObject_GenericGetAttr
,
/* tp_getattro */
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_
GC
,
/* tp_flags */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_
HAVE_GC
,
/* tp_flags */
0
,
/* tp_doc */
(
traverseproc
)
iter_traverse
,
/* tp_traverse */
0
,
/* tp_clear */
...
...
@@ -147,24 +146,23 @@ PyObject *
PyCallIter_New
(
PyObject
*
callable
,
PyObject
*
sentinel
)
{
calliterobject
*
it
;
it
=
PyObject_
NEW
(
calliterobject
,
&
PyCallIter_Type
);
it
=
PyObject_
GC_New
(
calliterobject
,
&
PyCallIter_Type
);
if
(
it
==
NULL
)
return
NULL
;
Py_INCREF
(
callable
);
it
->
it_callable
=
callable
;
Py_INCREF
(
sentinel
);
it
->
it_sentinel
=
sentinel
;
PyObject_GC_Init
(
it
);
_PyObject_GC_TRACK
(
it
);
return
(
PyObject
*
)
it
;
}
static
void
calliter_dealloc
(
calliterobject
*
it
)
{
PyObject_GC_Fini
(
it
);
_PyObject_GC_UNTRACK
(
it
);
Py_DECREF
(
it
->
it_callable
);
Py_DECREF
(
it
->
it_sentinel
);
it
=
(
calliterobject
*
)
PyObject_AS_GC
(
it
);
PyObject_DEL
(
it
);
PyObject_GC_Del
(
it
);
}
static
int
...
...
@@ -218,7 +216,7 @@ PyTypeObject PyCallIter_Type = {
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
"callable-iterator"
,
/* tp_name */
sizeof
(
calliterobject
)
+
PyGC_HEAD_SIZE
,
/* tp_basicsize */
sizeof
(
calliterobject
)
,
/* tp_basicsize */
0
,
/* tp_itemsize */
/* methods */
(
destructor
)
calliter_dealloc
,
/* tp_dealloc */
...
...
@@ -236,7 +234,7 @@ PyTypeObject PyCallIter_Type = {
PyObject_GenericGetAttr
,
/* tp_getattro */
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_
GC
,
/* tp_flags */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_
HAVE_GC
,
/* tp_flags */
0
,
/* tp_doc */
(
traverseproc
)
calliter_traverse
,
/* tp_traverse */
0
,
/* tp_clear */
...
...
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