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
8110dbd4
Kaydet (Commit)
8110dbd4
authored
Eyl 25, 2017
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Eyl 25, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-26491 Defer DECREFs until enumobject is in a consistent state (#3747)
üst
e6d9fcbb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
18 deletions
+30
-18
enumobject.c
Objects/enumobject.c
+30
-18
No files found.
Objects/enumobject.c
Dosyayı görüntüle @
8110dbd4
...
...
@@ -103,6 +103,8 @@ enum_next_long(enumobject *en, PyObject* next_item)
PyObject
*
result
=
en
->
en_result
;
PyObject
*
next_index
;
PyObject
*
stepped_up
;
PyObject
*
old_index
;
PyObject
*
old_item
;
if
(
en
->
en_longindex
==
NULL
)
{
en
->
en_longindex
=
PyLong_FromSsize_t
(
PY_SSIZE_T_MAX
);
...
...
@@ -118,15 +120,19 @@ enum_next_long(enumobject *en, PyObject* next_item)
if
(
result
->
ob_refcnt
==
1
)
{
Py_INCREF
(
result
);
Py_DECREF
(
PyTuple_GET_ITEM
(
result
,
0
));
Py_DECREF
(
PyTuple_GET_ITEM
(
result
,
1
));
}
else
{
result
=
PyTuple_New
(
2
);
if
(
result
==
NULL
)
{
Py_DECREF
(
next_index
);
Py_DECREF
(
next_item
);
return
NULL
;
}
old_index
=
PyTuple_GET_ITEM
(
result
,
0
);
old_item
=
PyTuple_GET_ITEM
(
result
,
1
);
PyTuple_SET_ITEM
(
result
,
0
,
next_index
);
PyTuple_SET_ITEM
(
result
,
1
,
next_item
);
Py_DECREF
(
old_index
);
Py_DECREF
(
old_item
);
return
result
;
}
result
=
PyTuple_New
(
2
);
if
(
result
==
NULL
)
{
Py_DECREF
(
next_index
);
Py_DECREF
(
next_item
);
return
NULL
;
}
PyTuple_SET_ITEM
(
result
,
0
,
next_index
);
PyTuple_SET_ITEM
(
result
,
1
,
next_item
);
...
...
@@ -140,6 +146,8 @@ enum_next(enumobject *en)
PyObject
*
next_item
;
PyObject
*
result
=
en
->
en_result
;
PyObject
*
it
=
en
->
en_sit
;
PyObject
*
old_index
;
PyObject
*
old_item
;
next_item
=
(
*
Py_TYPE
(
it
)
->
tp_iternext
)(
it
);
if
(
next_item
==
NULL
)
...
...
@@ -157,15 +165,19 @@ enum_next(enumobject *en)
if
(
result
->
ob_refcnt
==
1
)
{
Py_INCREF
(
result
);
Py_DECREF
(
PyTuple_GET_ITEM
(
result
,
0
));
Py_DECREF
(
PyTuple_GET_ITEM
(
result
,
1
));
}
else
{
result
=
PyTuple_New
(
2
);
if
(
result
==
NULL
)
{
Py_DECREF
(
next_index
);
Py_DECREF
(
next_item
);
return
NULL
;
}
old_index
=
PyTuple_GET_ITEM
(
result
,
0
);
old_item
=
PyTuple_GET_ITEM
(
result
,
1
);
PyTuple_SET_ITEM
(
result
,
0
,
next_index
);
PyTuple_SET_ITEM
(
result
,
1
,
next_item
);
Py_DECREF
(
old_index
);
Py_DECREF
(
old_item
);
return
result
;
}
result
=
PyTuple_New
(
2
);
if
(
result
==
NULL
)
{
Py_DECREF
(
next_index
);
Py_DECREF
(
next_item
);
return
NULL
;
}
PyTuple_SET_ITEM
(
result
,
0
,
next_index
);
PyTuple_SET_ITEM
(
result
,
1
,
next_item
);
...
...
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