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
4737b923
Kaydet (Commit)
4737b923
authored
May 03, 2019
tarafından
Zackery Spytz
Kaydeden (comit)
Andrew Svetlov
May 03, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-24638: Improve the error message in asyncio.ensure_future() (#12848)
üst
ceb842e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
tasks.py
Lib/asyncio/tasks.py
+2
-1
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+9
-0
No files found.
Lib/asyncio/tasks.py
Dosyayı görüntüle @
4737b923
...
...
@@ -628,7 +628,8 @@ def ensure_future(coro_or_future, *, loop=None):
return
task
elif
futures
.
isfuture
(
coro_or_future
):
if
loop
is
not
None
and
loop
is
not
futures
.
_get_loop
(
coro_or_future
):
raise
ValueError
(
'loop argument must agree with Future'
)
raise
ValueError
(
'The future belongs to a different loop than '
'the one specified as the loop argument'
)
return
coro_or_future
elif
inspect
.
isawaitable
(
coro_or_future
):
return
ensure_future
(
_wrap_awaitable
(
coro_or_future
),
loop
=
loop
)
...
...
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
4737b923
...
...
@@ -236,6 +236,15 @@ class BaseTaskTests:
with
self
.
assertRaises
(
TypeError
):
asyncio
.
ensure_future
(
'ok'
)
def
test_ensure_future_error_msg
(
self
):
loop
=
asyncio
.
new_event_loop
()
f
=
self
.
new_future
(
self
.
loop
)
with
self
.
assertRaisesRegex
(
ValueError
,
'The future belongs to a '
'different loop than the one specified as '
'the loop argument'
):
asyncio
.
ensure_future
(
f
,
loop
=
loop
)
loop
.
close
()
def
test_get_stack
(
self
):
T
=
None
...
...
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