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
2b754f49
Kaydet (Commit)
2b754f49
authored
Şub 01, 2014
tarafından
Brian Quinlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20319: concurrent.futures.wait() can block forever even if Futures have completed
üst
0ba5f0d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
_base.py
Lib/concurrent/futures/_base.py
+4
-2
NEWS
Misc/NEWS
+6
-0
No files found.
Lib/concurrent/futures/_base.py
Dosyayı görüntüle @
2b754f49
...
...
@@ -225,7 +225,8 @@ def as_completed(fs, timeout=None):
finally
:
for
f
in
fs
:
f
.
_waiters
.
remove
(
waiter
)
with
f
.
_condition
:
f
.
_waiters
.
remove
(
waiter
)
DoneAndNotDoneFutures
=
collections
.
namedtuple
(
'DoneAndNotDoneFutures'
,
'done not_done'
)
...
...
@@ -272,7 +273,8 @@ def wait(fs, timeout=None, return_when=ALL_COMPLETED):
waiter
.
event
.
wait
(
timeout
)
for
f
in
fs
:
f
.
_waiters
.
remove
(
waiter
)
with
f
.
_condition
:
f
.
_waiters
.
remove
(
waiter
)
done
.
update
(
waiter
.
finished_futures
)
return
DoneAndNotDoneFutures
(
done
,
set
(
fs
)
-
done
)
...
...
Misc/NEWS
Dosyayı görüntüle @
2b754f49
...
...
@@ -69,6 +69,12 @@ Library
- Issue #17481: inspect.getfullargspec() now uses inspect.signature() API.
- Issue #15304: concurrent.futures.wait() can block forever even if
Futures have completed. Patch by Glenn Langford.
Fix warning message when `os.chdir()` fails inside
`test.support.temp_cwd()`. Patch by Chris Jerdonek.
IDLE
----
...
...
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