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
f6e50b4a
Kaydet (Commit)
f6e50b4a
authored
Nis 14, 2014
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix sending tuples to custom generator objects with yield from (closes #21209)
Debugged by Victor.
üst
584f5cbf
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
test_pep380.py
Lib/test/test_pep380.py
+19
-0
NEWS
Misc/NEWS
+3
-0
ceval.c
Python/ceval.c
+1
-1
No files found.
Lib/test/test_pep380.py
Dosyayı görüntüle @
f6e50b4a
...
...
@@ -993,6 +993,25 @@ class TestPEP380Operation(unittest.TestCase):
del
inner_gen
gc_collect
()
def
test_send_tuple_with_custom_generator
(
self
):
# See issue #21209.
class
MyGen
:
def
__iter__
(
self
):
return
self
def
__next__
(
self
):
return
42
def
send
(
self
,
what
):
nonlocal
v
v
=
what
return
None
def
outer
():
v
=
yield
from
MyGen
()
g
=
outer
()
next
(
g
)
v
=
None
g
.
send
((
1
,
2
,
3
,
4
))
self
.
assertEqual
(
v
,
(
1
,
2
,
3
,
4
))
def
test_main
():
from
test
import
support
...
...
Misc/NEWS
Dosyayı görüntüle @
f6e50b4a
...
...
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
- Issue #21209: Fix sending tuples to custom generator objects with the yield
from syntax.
- Issue #21134: Fix segfault when str is called on an uninitialized
UnicodeEncodeError, UnicodeDecodeError, or UnicodeTranslateError object.
...
...
Python/ceval.c
Dosyayı görüntüle @
f6e50b4a
...
...
@@ -1902,7 +1902,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
if
(
v
==
Py_None
)
retval
=
Py_TYPE
(
reciever
)
->
tp_iternext
(
reciever
);
else
retval
=
_PyObject_CallMethodId
(
reciever
,
&
PyId_send
,
"O"
,
v
);
retval
=
_PyObject_CallMethodId
ObjArgs
(
reciever
,
&
PyId_send
,
v
,
NULL
);
}
Py_DECREF
(
v
);
if
(
retval
==
NULL
)
{
...
...
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