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
02157243
Kaydet (Commit)
02157243
authored
Kas 09, 2011
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout. Patch by Arnaud Ysmal.
üst
6139c1bf
a3651136
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
queues.py
Lib/multiprocessing/queues.py
+5
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/multiprocessing/queues.py
Dosyayı görüntüle @
02157243
...
...
@@ -129,7 +129,11 @@ class Queue(object):
if
not
self
.
_rlock
.
acquire
(
block
,
timeout
):
raise
Empty
try
:
if
not
self
.
_poll
(
block
and
(
deadline
-
time
.
time
())
or
0.0
):
if
block
:
timeout
=
deadline
-
time
.
time
()
if
timeout
<
0
or
not
self
.
_poll
(
timeout
):
raise
Empty
elif
not
self
.
_poll
():
raise
Empty
res
=
self
.
_recv
()
self
.
_sem
.
release
()
...
...
Misc/ACKS
Dosyayı görüntüle @
02157243
...
...
@@ -1068,6 +1068,7 @@ Bob Yodlowski
Danny Yoo
George Yoshida
Masazumi Yoshikawa
Arnaud Ysmal
Bernard Yue
Moshe Zadka
Milan Zamazal
...
...
Misc/NEWS
Dosyayı görüntüle @
02157243
...
...
@@ -365,6 +365,9 @@ Core and Builtins
Library
-------
-
Issue
#
13373
:
multiprocessing
.
Queue
.
get
()
could
sometimes
block
indefinitely
when
called
with
a
timeout
.
Patch
by
Arnaud
Ysmal
.
-
Issue
#
13254
:
Fix
Maildir
initialization
so
that
maildir
contents
are
read
correctly
.
...
...
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