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
c62f0cb3
Kaydet (Commit)
c62f0cb3
authored
Kas 07, 2017
tarafından
Suren Nihalani
Kaydeden (comit)
Andrew Svetlov
Kas 07, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31620: have asyncio/queues not leak memory when you've exceptions during waiting (#3813)
üst
c060c7e3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
0 deletions
+25
-0
queues.py
Lib/asyncio/queues.py
+6
-0
test_queues.py
Lib/test/test_asyncio/test_queues.py
+17
-0
2017-10-06-04-35-31.bpo-31620.gksLA1.rst
...S.d/next/Library/2017-10-06-04-35-31.bpo-31620.gksLA1.rst
+2
-0
No files found.
Lib/asyncio/queues.py
Dosyayı görüntüle @
c62f0cb3
...
...
@@ -167,6 +167,12 @@ class Queue:
yield
from
getter
except
:
getter
.
cancel
()
# Just in case getter is not done yet.
try
:
self
.
_getters
.
remove
(
getter
)
except
ValueError
:
pass
if
not
self
.
empty
()
and
not
getter
.
cancelled
():
# We were woken up by put_nowait(), but can't take
# the call. Wake up the next in line.
...
...
Lib/test/test_asyncio/test_queues.py
Dosyayı görüntüle @
c62f0cb3
...
...
@@ -295,6 +295,23 @@ class QueueGetTests(_QueueTestBase):
loop
=
self
.
loop
),
)
def
test_cancelled_getters_not_being_held_in_self_getters
(
self
):
def
a_generator
():
yield
0.1
yield
0.2
self
.
loop
=
self
.
new_test_loop
(
a_generator
)
@asyncio.coroutine
def
consumer
(
queue
):
try
:
item
=
yield
from
asyncio
.
wait_for
(
queue
.
get
(),
0.1
,
loop
=
self
.
loop
)
except
asyncio
.
TimeoutError
:
pass
queue
=
asyncio
.
Queue
(
loop
=
self
.
loop
,
maxsize
=
5
)
self
.
loop
.
run_until_complete
(
self
.
loop
.
create_task
(
consumer
(
queue
)))
self
.
assertEqual
(
len
(
queue
.
_getters
),
0
)
class
QueuePutTests
(
_QueueTestBase
):
...
...
Misc/NEWS.d/next/Library/2017-10-06-04-35-31.bpo-31620.gksLA1.rst
0 → 100644
Dosyayı görüntüle @
c62f0cb3
an empty asyncio.Queue now doesn't leak memory when queue.get pollers
timeout
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