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
ed6de734
Kaydet (Commit)
ed6de734
authored
Kas 24, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.6
üst
fbff9b3f
f7d199ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
NEWS
Misc/NEWS
+4
-0
genobject.c
Objects/genobject.c
+9
-0
ceval.c
Python/ceval.c
+1
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
ed6de734
...
...
@@ -10,6 +10,10 @@ What's New in Python 3.7.0 alpha 1
Core and Builtins
-----------------
- Issue #28782: Fix a bug in the implementation ``yield from`` when checking
if the next instruction is YIELD_FROM. Regression introduced by WORDCODE
(issue #26647).
- Issue #28774: Fix error position of the unicode error in ASCII and Latin1
encoders when a string returned by the error handler contains multiple
non-encodable characters (non-ASCII for the ASCII codec, characters out
...
...
Objects/genobject.c
Dosyayı görüntüle @
ed6de734
...
...
@@ -355,6 +355,14 @@ _PyGen_yf(PyGenObject *gen)
PyObject
*
bytecode
=
f
->
f_code
->
co_code
;
unsigned
char
*
code
=
(
unsigned
char
*
)
PyBytes_AS_STRING
(
bytecode
);
if
(
f
->
f_lasti
<
0
)
{
/* Return immediately if the frame didn't start yet. YIELD_FROM
always come after LOAD_CONST: a code object should not start
with YIELD_FROM */
assert
(
code
[
0
]
!=
YIELD_FROM
);
return
NULL
;
}
if
(
code
[
f
->
f_lasti
+
sizeof
(
_Py_CODEUNIT
)]
!=
YIELD_FROM
)
return
NULL
;
yf
=
f
->
f_stacktop
[
-
1
];
...
...
@@ -463,6 +471,7 @@ _gen_throw(PyGenObject *gen, int close_on_genexit,
assert
(
ret
==
yf
);
Py_DECREF
(
ret
);
/* Termination repetition of YIELD_FROM */
assert
(
gen
->
gi_frame
->
f_lasti
>=
0
);
gen
->
gi_frame
->
f_lasti
+=
sizeof
(
_Py_CODEUNIT
);
if
(
_PyGen_FetchStopIterationValue
(
&
val
)
==
0
)
{
ret
=
gen_send_ex
(
gen
,
val
,
0
,
0
);
...
...
Python/ceval.c
Dosyayı görüntüle @
ed6de734
...
...
@@ -2049,6 +2049,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
f
->
f_stacktop
=
stack_pointer
;
why
=
WHY_YIELD
;
/* and repeat... */
assert
(
f
->
f_lasti
>=
(
int
)
sizeof
(
_Py_CODEUNIT
));
f
->
f_lasti
-=
sizeof
(
_Py_CODEUNIT
);
goto
fast_yield
;
}
...
...
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