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
7530e479
Kaydet (Commit)
7530e479
authored
Tem 16, 2009
tarafından
Jesse Noller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 6433: multiprocessing.pool.map hangs on empty list
üst
2e1285ba
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
0 deletions
+11
-0
pool.py
Lib/multiprocessing/pool.py
+2
-0
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+6
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/multiprocessing/pool.py
Dosyayı görüntüle @
7530e479
...
...
@@ -207,6 +207,8 @@ class Pool(object):
chunksize
,
extra
=
divmod
(
len
(
iterable
),
len
(
self
.
_pool
)
*
4
)
if
extra
:
chunksize
+=
1
if
len
(
iterable
)
==
0
:
chunksize
=
0
task_batches
=
Pool
.
_get_tasks
(
func
,
iterable
,
chunksize
)
result
=
MapResult
(
self
.
_cache
,
chunksize
,
len
(
iterable
),
callback
)
...
...
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
7530e479
...
...
@@ -990,6 +990,12 @@ class _TestPool(BaseTestCase):
self
.
assertEqual
(
pmap
(
sqr
,
range
(
100
),
chunksize
=
20
),
map
(
sqr
,
range
(
100
)))
def
test_map_chunksize
(
self
):
try
:
self
.
pool
.
map_async
(
sqr
,
[],
chunksize
=
1
)
.
get
(
timeout
=
TIMEOUT1
)
except
multiprocessing
.
TimeoutError
:
self
.
fail
(
"pool.map_async with chunksize stalled on null list"
)
def
test_async
(
self
):
res
=
self
.
pool
.
apply_async
(
sqr
,
(
7
,
TIMEOUT1
,))
get
=
TimingWrapper
(
res
.
get
)
...
...
Misc/ACKS
Dosyayı görüntüle @
7530e479
...
...
@@ -199,6 +199,7 @@ Walter Dörwald
Hans Eckardt
Grant Edwards
John Ehresman
Eric Eisner
Andrew Eland
Lance Ellinghaus
David Ely
...
...
Misc/NEWS
Dosyayı görüntüle @
7530e479
...
...
@@ -352,6 +352,8 @@ Core and Builtins
Library
-------
- Issue #6433: fixed issues with multiprocessing.pool.map hanging on empty list
- Issue #6314: logging: Extra checks on the "level" argument in more places.
- Issue #2622: Fixed an ImportError when importing email.messsage from a
...
...
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