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
edfe8869
Kaydet (Commit)
edfe8869
authored
Ara 01, 2016
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Merge 3.6 (issue #28843)
üst
4778eab1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+15
-0
_asynciomodule.c
Modules/_asynciomodule.c
+5
-0
No files found.
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
edfe8869
...
...
@@ -1952,6 +1952,21 @@ class BaseTaskTests:
self
.
assertFalse
(
gather_task
.
cancelled
())
self
.
assertEqual
(
gather_task
.
result
(),
[
42
])
def
test_exception_traceback
(
self
):
# See http://bugs.python.org/issue28843
@asyncio.coroutine
def
foo
():
1
/
0
@asyncio.coroutine
def
main
():
task
=
self
.
new_task
(
self
.
loop
,
foo
())
yield
# skip one loop iteration
self
.
assertIsNotNone
(
task
.
exception
()
.
__traceback__
)
self
.
loop
.
run_until_complete
(
main
())
@mock.patch
(
'asyncio.base_events.logger'
)
def
test_error_in_call_soon
(
self
,
m_log
):
def
call_soon
(
callback
,
*
args
):
...
...
Modules/_asynciomodule.c
Dosyayı görüntüle @
edfe8869
...
...
@@ -1041,6 +1041,8 @@ FutureIter_throw(futureiterobject *self, PyObject *args)
if
(
PyExceptionClass_Check
(
type
))
{
PyErr_NormalizeException
(
&
type
,
&
val
,
&
tb
);
/* No need to call PyException_SetTraceback since we'll be calling
PyErr_Restore for `type`, `val`, and `tb`. */
}
else
if
(
PyExceptionInstance_Check
(
type
))
{
if
(
val
)
{
PyErr_SetString
(
PyExc_TypeError
,
...
...
@@ -2001,6 +2003,9 @@ task_step_impl(TaskObj *task, PyObject *exc)
if
(
!
ev
||
!
PyObject_TypeCheck
(
ev
,
(
PyTypeObject
*
)
et
))
{
PyErr_NormalizeException
(
&
et
,
&
ev
,
&
tb
);
}
if
(
tb
!=
NULL
)
{
PyException_SetTraceback
(
ev
,
tb
);
}
o
=
future_set_exception
((
FutureObj
*
)
task
,
ev
);
if
(
!
o
)
{
/* An exception in Task.set_exception() */
...
...
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