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
4145c838
Kaydet (Commit)
4145c838
authored
Eki 09, 2016
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27972: Prohibit Tasks to await on themselves.
üst
908d55dd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
7 deletions
+27
-7
tasks.py
Lib/asyncio/tasks.py
+14
-7
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+11
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/asyncio/tasks.py
Dosyayı görüntüle @
4145c838
...
...
@@ -241,7 +241,7 @@ class Task(futures.Future):
result
=
coro
.
throw
(
exc
)
except
StopIteration
as
exc
:
self
.
set_result
(
exc
.
value
)
except
futures
.
CancelledError
as
exc
:
except
futures
.
CancelledError
:
super
()
.
cancel
()
# I.e., Future.cancel(self).
except
Exception
as
exc
:
self
.
set_exception
(
exc
)
...
...
@@ -259,12 +259,19 @@ class Task(futures.Future):
'Task {!r} got Future {!r} attached to a '
'different loop'
.
format
(
self
,
result
)))
elif
blocking
:
result
.
_asyncio_future_blocking
=
False
result
.
add_done_callback
(
self
.
_wakeup
)
self
.
_fut_waiter
=
result
if
self
.
_must_cancel
:
if
self
.
_fut_waiter
.
cancel
():
self
.
_must_cancel
=
False
if
result
is
self
:
self
.
_loop
.
call_soon
(
self
.
_step
,
RuntimeError
(
'Task cannot await on itself: {!r}'
.
format
(
self
)))
else
:
result
.
_asyncio_future_blocking
=
False
result
.
add_done_callback
(
self
.
_wakeup
)
self
.
_fut_waiter
=
result
if
self
.
_must_cancel
:
if
self
.
_fut_waiter
.
cancel
():
self
.
_must_cancel
=
False
else
:
self
.
_loop
.
call_soon
(
self
.
_step
,
...
...
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
4145c838
...
...
@@ -92,6 +92,17 @@ class TaskTests(test_utils.TestCase):
finally
:
other_loop
.
close
()
def
test_task_awaits_on_itself
(
self
):
@asyncio.coroutine
def
test
():
yield
from
task
task
=
asyncio
.
ensure_future
(
test
(),
loop
=
self
.
loop
)
with
self
.
assertRaisesRegex
(
RuntimeError
,
'Task cannot await on itself'
):
self
.
loop
.
run_until_complete
(
task
)
def
test_task_class
(
self
):
@asyncio.coroutine
def
notmuch
():
...
...
Misc/NEWS
Dosyayı görüntüle @
4145c838
...
...
@@ -388,6 +388,8 @@ Library
-
Issue
#
28399
:
Remove
UNIX
socket
from
FS
before
binding
.
Patch
by
Коренберг
Марк
.
-
Issue
#
27972
:
Prohibit
Tasks
to
await
on
themselves
.
IDLE
----
...
...
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