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
e557da80
Kaydet (Commit)
e557da80
authored
Ock 13, 2012
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a crash when the return value of a subgenerator is a temporary
object (with a refcount of 1)
üst
7e447c82
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
test_pep380.py
Lib/test/test_pep380.py
+11
-0
genobject.c
Objects/genobject.c
+2
-1
No files found.
Lib/test/test_pep380.py
Dosyayı görüntüle @
e557da80
...
...
@@ -364,6 +364,17 @@ class TestPEP380Operation(unittest.TestCase):
])
def
test_exception_value_crash
(
self
):
# There used to be a refcount error when the return value
# stored in the StopIteration has a refcount of 1.
def
g1
():
yield
from
g2
()
def
g2
():
yield
"g2"
return
[
42
]
self
.
assertEqual
(
list
(
g1
()),
[
"g2"
])
def
test_generator_return_value
(
self
):
"""
Test generator return value
...
...
Objects/genobject.c
Dosyayı görüntüle @
e557da80
...
...
@@ -475,6 +475,7 @@ PyGen_FetchStopIterationValue(PyObject **pvalue) {
Py_XDECREF
(
tb
);
if
(
ev
)
{
value
=
((
PyStopIterationObject
*
)
ev
)
->
value
;
Py_INCREF
(
value
);
Py_DECREF
(
ev
);
}
}
else
if
(
PyErr_Occurred
())
{
...
...
@@ -482,8 +483,8 @@ PyGen_FetchStopIterationValue(PyObject **pvalue) {
}
if
(
value
==
NULL
)
{
value
=
Py_None
;
Py_INCREF
(
value
);
}
Py_INCREF
(
value
);
*
pvalue
=
value
;
return
0
;
}
...
...
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