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
de34cbe9
Kaydet (Commit)
de34cbe9
authored
Agu 02, 2017
tarafından
Alexander Mohr
Kaydeden (comit)
INADA Naoki
Agu 02, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31061: fix crash in asyncio speedup module (GH-2966)
üst
47320a65
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
0 deletions
+32
-0
test_futures.py
Lib/test/test_asyncio/test_futures.py
+12
-0
test_tasks.py
Lib/test/test_asyncio/test_tasks.py
+15
-0
2017-08-01-09-32-58.bpo-31061.husAYX.rst
...S.d/next/Library/2017-08-01-09-32-58.bpo-31061.husAYX.rst
+1
-0
_asynciomodule.c
Modules/_asynciomodule.c
+4
-0
No files found.
Lib/test/test_asyncio/test_futures.py
Dosyayı görüntüle @
de34cbe9
"""Tests for futures.py."""
import
concurrent.futures
import
gc
import
re
import
sys
import
threading
...
...
@@ -19,9 +20,11 @@ except ImportError:
def
_fakefunc
(
f
):
return
f
def
first_cb
():
pass
def
last_cb
():
pass
...
...
@@ -483,6 +486,15 @@ class BaseFutureTests:
Exception
(
"elephant"
),
Exception
(
"elephant"
))
self
.
assertRaises
(
TypeError
,
fi
.
throw
,
list
)
def
test_future_del_collect
(
self
):
class
Evil
:
def
__del__
(
self
):
gc
.
collect
()
for
i
in
range
(
100
):
fut
=
self
.
_new_future
(
loop
=
self
.
loop
)
fut
.
set_result
(
Evil
())
@unittest.skipUnless
(
hasattr
(
futures
,
'_CFuture'
),
'requires the C _asyncio module'
)
...
...
Lib/test/test_asyncio/test_tasks.py
Dosyayı görüntüle @
de34cbe9
...
...
@@ -3,6 +3,7 @@
import
collections
import
contextlib
import
functools
import
gc
import
io
import
os
import
re
...
...
@@ -91,6 +92,20 @@ class BaseTaskTests:
self
.
loop
.
set_task_factory
(
self
.
new_task
)
self
.
loop
.
create_future
=
lambda
:
self
.
new_future
(
self
.
loop
)
def
test_task_del_collect
(
self
):
class
Evil
:
def
__del__
(
self
):
gc
.
collect
()
@asyncio.coroutine
def
run
():
return
Evil
()
self
.
loop
.
run_until_complete
(
asyncio
.
gather
(
*
[
self
.
new_task
(
self
.
loop
,
run
())
for
_
in
range
(
100
)
],
loop
=
self
.
loop
))
def
test_other_loop_future
(
self
):
other_loop
=
asyncio
.
new_event_loop
()
fut
=
self
.
new_future
(
other_loop
)
...
...
Misc/NEWS.d/next/Library/2017-08-01-09-32-58.bpo-31061.husAYX.rst
0 → 100644
Dosyayı görüntüle @
de34cbe9
Fixed a crash when using asyncio and threads.
Modules/_asynciomodule.c
Dosyayı görüntüle @
de34cbe9
...
...
@@ -972,6 +972,8 @@ FutureObj_dealloc(PyObject *self)
}
}
PyObject_GC_UnTrack
(
self
);
if
(
fut
->
fut_weakreflist
!=
NULL
)
{
PyObject_ClearWeakRefs
(
self
);
}
...
...
@@ -1846,6 +1848,8 @@ TaskObj_dealloc(PyObject *self)
}
}
PyObject_GC_UnTrack
(
self
);
if
(
task
->
task_weakreflist
!=
NULL
)
{
PyObject_ClearWeakRefs
(
self
);
}
...
...
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