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
d2dc15b2
Kaydet (Commit)
d2dc15b2
authored
Mar 02, 2016
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.5 (issue #25888)
üst
5604446b
c724bae5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
6 deletions
+40
-6
genobject.h
Include/genobject.h
+1
-0
test_coroutines.py
Lib/test/test_coroutines.py
+18
-0
genobject.c
Objects/genobject.c
+6
-6
ceval.c
Python/ceval.c
+15
-0
No files found.
Include/genobject.h
Dosyayı görüntüle @
d2dc15b2
...
...
@@ -43,6 +43,7 @@ PyAPI_FUNC(PyObject *) PyGen_NewWithQualName(struct _frame *,
PyAPI_FUNC
(
int
)
PyGen_NeedsFinalizing
(
PyGenObject
*
);
PyAPI_FUNC
(
int
)
_PyGen_FetchStopIterationValue
(
PyObject
**
);
PyObject
*
_PyGen_Send
(
PyGenObject
*
,
PyObject
*
);
PyObject
*
_PyGen_yf
(
PyGenObject
*
);
PyAPI_FUNC
(
void
)
_PyGen_Finalize
(
PyObject
*
self
);
#ifndef Py_LIMITED_API
...
...
Lib/test/test_coroutines.py
Dosyayı görüntüle @
d2dc15b2
...
...
@@ -942,6 +942,24 @@ class CoroutineTest(unittest.TestCase):
with
self
.
assertRaises
(
Marker
):
c
.
throw
(
ZeroDivisionError
)
def
test_await_15
(
self
):
@types.coroutine
def
nop
():
yield
async
def
coroutine
():
await
nop
()
async
def
waiter
(
coro
):
await
coro
coro
=
coroutine
()
coro
.
send
(
None
)
with
self
.
assertRaisesRegex
(
RuntimeError
,
"coroutine is being awaited already"
):
waiter
(
coro
)
.
send
(
None
)
def
test_with_1
(
self
):
class
Manager
:
def
__init__
(
self
,
name
):
...
...
Objects/genobject.c
Dosyayı görüntüle @
d2dc15b2
...
...
@@ -267,8 +267,8 @@ gen_close_iter(PyObject *yf)
return
0
;
}
static
PyObject
*
g
en_yf
(
PyGenObject
*
gen
)
PyObject
*
_PyG
en_yf
(
PyGenObject
*
gen
)
{
PyObject
*
yf
=
NULL
;
PyFrameObject
*
f
=
gen
->
gi_frame
;
...
...
@@ -290,7 +290,7 @@ static PyObject *
gen_close
(
PyGenObject
*
gen
,
PyObject
*
args
)
{
PyObject
*
retval
;
PyObject
*
yf
=
g
en_yf
(
gen
);
PyObject
*
yf
=
_PyG
en_yf
(
gen
);
int
err
=
0
;
if
(
yf
)
{
...
...
@@ -330,7 +330,7 @@ gen_throw(PyGenObject *gen, PyObject *args)
PyObject
*
typ
;
PyObject
*
tb
=
NULL
;
PyObject
*
val
=
NULL
;
PyObject
*
yf
=
g
en_yf
(
gen
);
PyObject
*
yf
=
_PyG
en_yf
(
gen
);
_Py_IDENTIFIER
(
throw
);
if
(
!
PyArg_UnpackTuple
(
args
,
"throw"
,
1
,
3
,
&
typ
,
&
val
,
&
tb
))
...
...
@@ -556,7 +556,7 @@ gen_set_qualname(PyGenObject *op, PyObject *value)
static
PyObject
*
gen_getyieldfrom
(
PyGenObject
*
gen
)
{
PyObject
*
yf
=
g
en_yf
(
gen
);
PyObject
*
yf
=
_PyG
en_yf
(
gen
);
if
(
yf
==
NULL
)
Py_RETURN_NONE
;
return
yf
;
...
...
@@ -791,7 +791,7 @@ coro_await(PyCoroObject *coro)
static
PyObject
*
coro_get_cr_await
(
PyCoroObject
*
coro
)
{
PyObject
*
yf
=
g
en_yf
((
PyGenObject
*
)
coro
);
PyObject
*
yf
=
_PyG
en_yf
((
PyGenObject
*
)
coro
);
if
(
yf
==
NULL
)
Py_RETURN_NONE
;
return
yf
;
...
...
Python/ceval.c
Dosyayı görüntüle @
d2dc15b2
...
...
@@ -2021,6 +2021,21 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Py_DECREF
(
iterable
);
if
(
iter
!=
NULL
&&
PyCoro_CheckExact
(
iter
))
{
PyObject
*
yf
=
_PyGen_yf
((
PyGenObject
*
)
iter
);
if
(
yf
!=
NULL
)
{
/* `iter` is a coroutine object that is being
awaited, `yf` is a pointer to the current awaitable
being awaited on. */
Py_DECREF
(
yf
);
Py_CLEAR
(
iter
);
PyErr_SetString
(
PyExc_RuntimeError
,
"coroutine is being awaited already"
);
/* The code below jumps to `error` if `iter` is NULL. */
}
}
SET_TOP
(
iter
);
/* Even if it's NULL */
if
(
iter
==
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