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
e41682b9
Kaydet (Commit)
e41682b9
authored
Haz 06, 2012
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12157: pool.map() does not handle empty iterable correctly
Initial patch by mouad
üst
a3a164a0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
pool.py
Lib/multiprocessing/pool.py
+1
-0
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+15
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/multiprocessing/pool.py
Dosyayı görüntüle @
e41682b9
...
...
@@ -584,6 +584,7 @@ class MapResult(ApplyResult):
if
chunksize
<=
0
:
self
.
_number_left
=
0
self
.
_ready
=
True
del
cache
[
self
.
_job
]
else
:
self
.
_number_left
=
length
//
chunksize
+
bool
(
length
%
chunksize
)
...
...
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
e41682b9
...
...
@@ -1178,6 +1178,18 @@ class _TestPool(BaseTestCase):
join
()
self
.
assertLess
(
join
.
elapsed
,
0.5
)
def
test_empty_iterable
(
self
):
# See Issue 12157
p
=
self
.
Pool
(
1
)
self
.
assertEqual
(
p
.
map
(
sqr
,
[]),
[])
self
.
assertEqual
(
list
(
p
.
imap
(
sqr
,
[])),
[])
self
.
assertEqual
(
list
(
p
.
imap_unordered
(
sqr
,
[])),
[])
self
.
assertEqual
(
p
.
map_async
(
sqr
,
[])
.
get
(),
[])
p
.
close
()
p
.
join
()
def
raising
():
raise
KeyError
(
"key"
)
...
...
@@ -2176,7 +2188,7 @@ class ProcessesMixin(object):
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'RawValue'
,
'RawArray'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'connection'
,
'JoinableQueue'
'connection'
,
'JoinableQueue'
,
'Pool'
)))
testcases_processes
=
create_test_cases
(
ProcessesMixin
,
type
=
'processes'
)
...
...
@@ -2190,7 +2202,7 @@ class ManagerMixin(object):
locals
()
.
update
(
get_attributes
(
manager
,
(
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'list'
,
'dict'
,
'Namespace'
,
'JoinableQueue'
'Namespace'
,
'JoinableQueue'
,
'Pool'
)))
testcases_manager
=
create_test_cases
(
ManagerMixin
,
type
=
'manager'
)
...
...
@@ -2204,7 +2216,7 @@ class ThreadsMixin(object):
'Queue'
,
'Lock'
,
'RLock'
,
'Semaphore'
,
'BoundedSemaphore'
,
'Condition'
,
'Event'
,
'Value'
,
'Array'
,
'current_process'
,
'active_children'
,
'Pipe'
,
'connection'
,
'dict'
,
'list'
,
'Namespace'
,
'JoinableQueue'
'Namespace'
,
'JoinableQueue'
,
'Pool'
)))
testcases_threads
=
create_test_cases
(
ThreadsMixin
,
type
=
'threads'
)
...
...
Misc/NEWS
Dosyayı görüntüle @
e41682b9
...
...
@@ -70,6 +70,9 @@ Core and Builtins
Library
-------
- Issue #12157: Make pool.map() empty iterables correctly. Initial
patch by mouad.
- Issue #14992: os.makedirs(path, exist_ok=True) would raise an OSError
when the path existed and had the S_ISGID mode bit set when it was
not explicitly asked for. This is no longer an exception as mkdir
...
...
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